spring-autowire-xml.xml 996 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="userConroller" class="com.cdxw.spring.controller.UserConroller" autowire="byName">
  6. <!-- <property name="userService" ref="userService"></property>-->
  7. </bean>
  8. <bean id="userService" class="com.cdxw.spring.service.impl.UserServiceImpl" autowire="byName">
  9. <!-- <property name="userDao" ref="userDao"></property>-->
  10. </bean>
  11. <bean id="service" class="com.cdxw.spring.service.impl.UserServiceImpl" autowire="byName">
  12. <!-- <property name="userDao" ref="userDao"></property>-->
  13. </bean>
  14. <bean id="userDao" class="com.cdxw.spring.dao.impl.UserDaoImpl"></bean>
  15. <bean id="dao" class="com.cdxw.spring.dao.impl.UserDaoImpl"></bean>
  16. </beans>