spring-lifecycle.xml 745 B

123456789101112131415
  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="user" class="com.cdxw.spring.pojo.User" init-method="initMethod" destroy-method="destroyMethod">
  6. <property name="id" value="1"></property>
  7. <property name="username" value="admin"></property>
  8. <property name="password" value="123456"></property>
  9. <property name="age" value="23"></property>
  10. </bean>
  11. <bean id="myBeanPostProcessor" class="com.cdxw.spring.process.MyBeanPostProcessor"></bean>
  12. </beans>