博客
关于我
spring集成web
阅读量:101 次
发布时间:2019-02-26

本文共 547 字,大约阅读时间需要 1 分钟。

spring集成web

①在web.xml中配置ContextLoaderListener监听器(导入spring-web坐标)

org.springframework
spring-web
5.3.1
contextConfigLocation
classpath:appliactionContext.xml
org.springframework.web.context.ContextLoaderListener

②使用WebApplicationContextUtils获得应用上下文对象ApplicationContext

ServletContext servletContext = this.getServletContext();WebApplicationContext app = WebApplicationContextUtils.getWebApplicationContext(servletContext);

 

转载地址:http://aheu.baihongyu.com/

你可能感兴趣的文章
Nginx运维与实战(二)-Https配置
查看>>
Nginx部署_mysql代理_redis代理_phoenix代理_xxljob代理_websocket代理_Nacos代理_内网穿透代理_多系统转发---记录021_大数据工作笔记0181
查看>>
nginx部署本地项目如何让异地公网访问?服务器端口映射配置!
查看>>
Nginx配置HTTPS服务
查看>>
Nginx配置https的一个误区(导致404错误)
查看>>
Nginx配置Https证书
查看>>
Nginx配置http跳转https
查看>>
Nginx配置ssl实现https
查看>>
nginx配置ssl证书https解决公网ip可以访问但是域名不行的问题
查看>>
Nginx配置TCP代理指南
查看>>
NGINX配置TCP连接双向SSL
查看>>