得到web.xml中servletContext的context-param

Posted tonggc1668

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了得到web.xml中servletContext的context-param相关的知识,希望对你有一定的参考价值。

import org.springframework.web.context.ContextLoader;

// web.xml文件中已经启用数据权限
            String enableDataSecurity = ContextLoader.getCurrentWebApplicationContext().getServletContext().getInitParameter("EnableDataSecurity");
            

 

web.xml

    <!-- Enable data security -->
    <context-param>
        <param-name>EnableDataSecurity</param-name>
        <param-value>true</param-value>
    </context-param>

 

以上是关于得到web.xml中servletContext的context-param的主要内容,如果未能解决你的问题,请参考以下文章

Could not open ServletContext resource [/WEB-INF/applicationContext.xml] 解决办法

ServletContext简介

Could not open ServletContext resource [/WEB-INF/applicationContext.xml]解决方法

Could not open ServletContext resource [/WEB-INF/applicationContext.xml]”解决方案

关于“Could not open ServletContext resource [/WEB-INF/applicationContext.xml]”解决方案

JavaWeb项目启动过程与ServletContext