在JSP中使用Spring
来源:岁月联盟
时间:2008-11-06
要再JSP里面得到ApplicationContext需要这么做.
首先
import="org.springframework.web.context.support.*,org.springframework.context.*"
然后可以通过如何做法:
ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
这样就得到了ApplicationContext,就可以操作Spring了。
JSP本来就可以认为是一个Servlet,所以使用getServletContext()就是理所应当了。
下一篇:如何用JSP读写Cookie