首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

spring中init-method与BeanPostProcessor有关问题

2012-04-28 
spring中init-method与BeanPostProcessor问题如题如果2个并存的话就会报错误 java.lang.NullPointerExcept

spring中init-method与BeanPostProcessor问题
如题如果2个并存的话就会报错误 java.lang.NullPointerException.
配置文件如下:
  <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN"
"http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>
<bean id="theBeanPostProcessor" class="theSpring2.theBeanPostProcessor.TheBeanPostProcessor"> 
</bean>
<bean id="theBeanPostProcessorA" class="theSpring2.theBeanPostProcessor.TheBeanPostProcessorA" init-method="theInitMethod">
<property name="name" value="cuiyaonan"></property>
</bean>
</beans>


test方法如下:

public class TheMainTest {
public static void main(String[] args){
ClassPathXmlApplicationContext act=new ClassPathXmlApplicationContext("applicationContext_spring2.xml");

}
}

[解决办法]
不明白lz的意思。

热点排行