remove xml file

This commit is contained in:
Raksha Rao 2018-02-05 16:39:20 +05:30
parent 91dedcc9cb
commit f7518c0c05
1 changed files with 0 additions and 21 deletions

View File

@ -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>