remove xml file
This commit is contained in:
parent
91dedcc9cb
commit
f7518c0c05
|
@ -1,21 +0,0 @@
|
|||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
|
||||
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
|
||||
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
|
||||
xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.2.xsd">
|
||||
|
||||
<context:annotation-config/>
|
||||
|
||||
<bean id="bankAccountWithConstructorInjectionBean"
|
||||
class="com.baeldung.samplebeaninjectionypes.BankAccountWithConstructorInjection">
|
||||
<constructor-arg ref="bankAccountService" />
|
||||
</bean>
|
||||
|
||||
<bean id="bankAccountWithSetterInjection"
|
||||
class="com.baeldung.samplebeaninjectionypes.BankAccountWithSetterInjection">
|
||||
<constructor-arg ref="bankAccountService" />
|
||||
</bean>
|
||||
|
||||
<bean id="bankAccountService" class="com.baeldung.samplebeaninjectionypes.BankAccountService">
|
||||
</bean>
|
||||
</beans>
|
Loading…
Reference in New Issue