spring如何对普通类进行注入
<beanid="xardDao"class="dao.impl.xardDaoImpl"><propertyname="hibernateTemplate"><refb...
<bean id="xardDao"
class="dao.impl.xardDaoImpl">
<property name="hibernateTemplate">
<ref bean="hibernateTemplate" />
</property>
</bean>
<bean id="xardService"
class="service.impl.xardServiceImpl">
<property name="xardDao">
<ref bean="xardDao" />
</property>
</bean>
现在想往一个普通类Test里注入xardService,
<bean id="Test"
class="util.Text">
<property name="xardService">
<ref bean="xardService" />
</property>
</bean>
这时候就在Test中报空指针异常了,显然注入没有成功,set方法也写了。
请教怎么往一个普通类里注入。这个类不是接口,没关系的吧。
从日志看出,服务器一启动的时候就帮我把applicationContext加载了 展开
class="dao.impl.xardDaoImpl">
<property name="hibernateTemplate">
<ref bean="hibernateTemplate" />
</property>
</bean>
<bean id="xardService"
class="service.impl.xardServiceImpl">
<property name="xardDao">
<ref bean="xardDao" />
</property>
</bean>
现在想往一个普通类Test里注入xardService,
<bean id="Test"
class="util.Text">
<property name="xardService">
<ref bean="xardService" />
</property>
</bean>
这时候就在Test中报空指针异常了,显然注入没有成功,set方法也写了。
请教怎么往一个普通类里注入。这个类不是接口,没关系的吧。
从日志看出,服务器一启动的时候就帮我把applicationContext加载了 展开
4个回答
展开全部
没有注入成功是因为命名需合乎sun规范,而且配置文件中必须和实际类中的变量名要满足一致的。
如:
<bean id="xardService"
class="service.impl.xardServiceImpl">
<property name="xardDao">
<ref bean="xardDao" />
</property>
</bean>
那你的xardServiceImpl.java中必须有这样一个成员:
****
xardDaoImpl xardDao;
****
而且要有get,set方法。
那相似的,你的Text.java中必须有成员:
xardServiceImpl xardService;
如:
<bean id="xardService"
class="service.impl.xardServiceImpl">
<property name="xardDao">
<ref bean="xardDao" />
</property>
</bean>
那你的xardServiceImpl.java中必须有这样一个成员:
****
xardDaoImpl xardDao;
****
而且要有get,set方法。
那相似的,你的Text.java中必须有成员:
xardServiceImpl xardService;
展开全部
按照楼主这样说明应该没有问题
如果想解决的话,写一个测试类
applicationContext.xml这个文件如果在webRoot/WEB-INF下的话
测试类的里main方法这样写: ApplicationContext ctx = new FileSystemXmlApplicationContext("WebRoot/WEB-INF/applicationContext.xml");
然后
Test t = (Test)ctx.getBean("Test");
t.foo();
//foo方法中打印下xardService
如果想解决的话,写一个测试类
applicationContext.xml这个文件如果在webRoot/WEB-INF下的话
测试类的里main方法这样写: ApplicationContext ctx = new FileSystemXmlApplicationContext("WebRoot/WEB-INF/applicationContext.xml");
然后
Test t = (Test)ctx.getBean("Test");
t.foo();
//foo方法中打印下xardService
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不要接口一样可以.
有set方法,加上你的这段配置是没问题的.
问题是你要确定运行test类的时候,是否执行加载了applicationContext配置文件.
有set方法,加上你的这段配置是没问题的.
问题是你要确定运行test类的时候,是否执行加载了applicationContext配置文件.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
从你发的部分来看好像没什么问题
最好是把错误提示发上来,检查有没有重复的bean,service中是否存在xardDao并且已经有get set方法(这个最好是用软件自动生成的)
最好是把错误提示发上来,检查有没有重复的bean,service中是否存在xardDao并且已经有get set方法(这个最好是用软件自动生成的)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询