在JSP中使用Spring
2008-11-05 16:35:48 来源:WEB开发网核心提示:在jsp中使用SPRing其实很容易,主要用到Spring的WebapplicationContextUtils.getWebApplicationContext函数,在JSP中使用Spring,要再JSP里面得到ApplicationContext需要这么做.首先import="org.springfram
在jsp中使用SPRing其实很容易,主要用到Spring的WebapplicationContextUtils.getWebApplicationContext函数。
要再JSP里面得到ApplicationContext需要这么做.
首先
import="org.springframework.web.context.support.*,org.springframework.context.*"
然后可以通过如何做法:
ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
这样就得到了ApplicationContext,就可以操作Spring了。
JSP本来就可以认为是一个Servlet,所以使用getServletContext()就是理所应当了。
更多精彩
赞助商链接