BAEL-20262: Migrate spring-core-2 module to the com.baeldung package

This commit is contained in:
Krzysztof Woyke
2019-12-20 12:56:36 +01:00
parent c69b2a5ca3
commit fd92e64815
112 changed files with 150 additions and 151 deletions
@@ -4,12 +4,12 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="ship" class="org.baeldung.bean.injection.Ship">
<bean id="ship" class="com.baeldung.bean.injection.Ship">
<constructor-arg>
<ref bean="helm"/>
</constructor-arg>
</bean>
<bean id="helm" class="org.baeldung.bean.injection.Helm"/>
<bean id="helm" class="com.baeldung.bean.injection.Helm"/>
</beans>
@@ -4,11 +4,11 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="ship" class="org.baeldung.bean.injection.Ship">
<bean id="ship" class="com.baeldung.bean.injection.Ship">
<property name="helm">
<ref bean="helm"/>
</property>
</bean>
<bean id="helm" class="org.baeldung.bean.injection.Helm"/>
<bean id="helm" class="com.baeldung.bean.injection.Helm"/>
</beans>
@@ -4,7 +4,7 @@
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
>
<bean id="employeeDao" class="org.baeldung.jdbc.EmployeeDAO">
<bean id="employeeDao" class="com.baeldung.jdbc.EmployeeDAO">
<property name="dataSource" ref="dataSource"/>
</bean>
+2 -2
View File
@@ -3,8 +3,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="personSingleton" class="org.baeldung.scopes.Person" scope="singleton"/>
<bean id="personSingleton" class="com.baeldung.scopes.Person" scope="singleton"/>
<bean id="personPrototype" class="org.baeldung.scopes.Person" scope="prototype"/>
<bean id="personPrototype" class="com.baeldung.scopes.Person" scope="prototype"/>
</beans>
@@ -6,10 +6,10 @@
>
<beans profile="dev">
<bean id="devDatasourceConfig" class="org.baeldung.profiles.DevDatasourceConfig"/>
<bean id="devDatasourceConfig" class="com.baeldung.profiles.DevDatasourceConfig"/>
</beans>
<beans profile="production">
<bean id="productionDatasourceConfig" class="org.baeldung.profiles.ProductionDatasourceConfig"/>
<bean id="productionDatasourceConfig" class="com.baeldung.profiles.ProductionDatasourceConfig"/>
</beans>
</beans>
@@ -4,13 +4,13 @@
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean id="initMethodExampleBean"
class="org.baeldung.startup.InitMethodExampleBean"
class="com.baeldung.startup.InitMethodExampleBean"
scope="prototype"
init-method="init">
</bean>
<bean id="allStrategiesExampleBean"
class="org.baeldung.startup.AllStrategiesExampleBean"
class="com.baeldung.startup.AllStrategiesExampleBean"
init-method="init">
</bean>
</beans>