美文网首页工作生活
jsp页面中无法使用el表达式获取值

jsp页面中无法使用el表达式获取值

作者: 8奈文摩尔8 | 来源:发表于2019-07-03 15:03 被阅读0次

    使用最新的Servlet3.1规范,不要使用默认的2.3dtd,修改web.xml文件
    修改web.xml 里面约束

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns="http://xmlns.jcp.org/xml/ns/javaee" 
        xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
         <display-name>securityannotation</display-name>
         <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
         </welcome-file-list>
    </web-app>
    

    参考文章:https://blog.csdn.net/feinifi/article/details/78492249

    相关文章

      网友评论

        本文标题:jsp页面中无法使用el表达式获取值

        本文链接:https://www.haomeiwen.com/subject/zngqhctx.html