當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
JSP页面中调用Spring Bean
生活随笔
收集整理的這篇文章主要介紹了
JSP页面中调用Spring Bean
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
前言
- spring boot 2.0.3.RELEASE
- spring mvc view : jsp
JSP頁面中調用Spring Bean
在 JSP 頁面獲得 WebApplicationContext
方法1
<%@page import="org.springframework.web.context.WebApplicationContext" %> <%@page import="org.springframework.web.context.support.WebApplicationContextUtils" %> ... WebApplicationContext context=WebApplicationContextUtils.getWebApplicationContext(this.getServletContext()); ...方法2
<%@page import="org.springframework.web.context.WebApplicationContext" %> ... WebApplicationContext context = (WebApplicationContext)this.getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE); ...示例
<%@page import="org.springframework.web.context.WebApplicationContext" %> <%@page import="org.springframework.web.context.support.WebApplicationContextUtils" %> <%@page import="my.package.service.IArticleService" %> ... WebApplicationContext context=WebApplicationContextUtils.getWebApplicationContext(this.getServletContext()); IArticleService articleService= (IArticleService)context.getBean("articleService"); ...參考
https://docs.spring.io/spring-framework/docs/5.0.6.RELEASE/spring-framework-reference/web.html#web-integration-common
總結
以上是生活随笔為你收集整理的JSP页面中调用Spring Bean的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 吃中药输卵管居然通了是怎么回事
- 下一篇: 什么药膏能让疣体脱落