如何在JSP页面中调用Spring容器注入的Bean
1个回答
展开全部
首先在jsp中导入:
<jsp:directive.page import="org.springframework.web.context.WebApplicationContext"/>
然后可以调用spring容器管理的Bean了(这里实例调用的是Service对象):
[c-sharp] view plain copy
<%
WebApplicationContext context = (WebApplicationContext)this.getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
TestService service = (TestService)context.getBean("testService");
%>
<jsp:directive.page import="org.springframework.web.context.WebApplicationContext"/>
然后可以调用spring容器管理的Bean了(这里实例调用的是Service对象):
[c-sharp] view plain copy
<%
WebApplicationContext context = (WebApplicationContext)this.getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
TestService service = (TestService)context.getBean("testService");
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询