ソースを参照

Moved 'app.properties' into resources, i.e. classpath root.

Jesper Hammarbäck 18 年 前
コミット
06dc6f1f8c
共有3 個のファイルを変更した3 個の追加5 個の削除を含む
  1. 0
    1
      register-app/app.properties
  2. 1
    0
      register-app/src/main/resources/app.properties
  3. 2
    4
      register-app/src/main/resources/context-app.xml

+ 0
- 1
register-app/app.properties ファイルの表示

@@ -1 +0,0 @@
1
-wsdl.url=http://localhost:8080/dddsample/ws/RegisterEvent?wsdl

+ 1
- 0
register-app/src/main/resources/app.properties ファイルの表示

@@ -0,0 +1 @@
1
+wsdl.url=http://localhost:8888/dddsample/ws/RegisterEvent?wsdl

+ 2
- 4
register-app/src/main/resources/context-app.xml ファイルの表示

@@ -9,9 +9,7 @@
9 9
        xmlns:context="http://www.springframework.org/schema/context">
10 10
 
11 11
   <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
12
-    <property name="locations">
13
-      <value>classpath:app.properties</value>
14
-    </property>
12
+    <property name="locations" value="classpath:app.properties"/>
15 13
   </bean>
16 14
 
17 15
   <bean id="registerApp" class="se.citerus.registerapp.RegisterApp">
@@ -20,7 +18,7 @@
20 18
   </bean>
21 19
 
22 20
   <bean id="handlingEventServiceWs" class="se.citerus.registerapp.service.HandlingEventServiceWs">
23
-    <property name="endPoint" ref="handlingEventWebServiceEndPoint"></property>
21
+    <property name="endPoint" ref="handlingEventWebServiceEndPoint"/>
24 22
   </bean>
25 23
 
26 24
   <bean id="handlingEventWebServiceEndPoint" class="org.springframework.remoting.jaxws.JaxWsPortProxyFactoryBean">