Spring获取bean
Posted 骑着乌龟漂流
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring获取bean相关的知识,希望对你有一定的参考价值。
1.在spring-servlet.xml中配置
<!--业务类的配置-->
<bean id="locationTaskService" class="com.location.service.LocationTaskServiceImpl"></bean>
2.添加获取bean的代码
ApplicationContext ac=new ClassPathXmlApplicationContext("spring-servlet.xml");
LocationTaskService cd=(LocationTaskService) ac.getBean("locationTaskService");
以上是关于Spring获取bean的主要内容,如果未能解决你的问题,请参考以下文章