浏览 2273 次
锁定老帖子 主题:運用Spring 手動取bean的方法
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-04-18
首先在web.xml中加入如下代碼 <servlet> <servlet-name>GetSpringContext</servlet-name> <servlet-class>com.morris.GetSpringContext</servlet-class> <load-on-startup>1</load-on-startup> </servlet> 具體實現如下: public class GetSpringContext extends HttpServlet { /** * @author Morris */ private static final long serialVersionUID = 1L; private static Log logger = LogFactory.getLog(GetSpringContext.class); public static commonService commonService = null; public GetSpringContext(){}; public void init(){ WebApplicationContext ctx =WebApplicationContextUtils.getWebApplicationContext(getServletContext()); commonService = (commonService)ctx.getBean("commonService"); //自己隨便取啦 } public void doGet(HttpServletRequest request, HttpServletResponse response) { } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2008-04-18
不说了你这贴估计用不了多久
会被集体暴力。。。 |
|
返回顶楼 | |
发表时间:2008-04-18
竟然被投隐藏啊???这也太打击人了吧
尽管内容比较简单,但楼主的奉献精神还是要肯定的。我投个新手好了 |
|
返回顶楼 | |
发表时间:2008-05-19
确实该投隐藏~~~
|
|
返回顶楼 | |
发表时间:2008-06-27
[color=red][/color]
|
|
返回顶楼 | |