JSP EL表达式忽略方法:

web.xml中,和jsp中;jsp中的等级要高一些;

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID"
    version="3.0">
    <display-name>TestBootWeb</display-name>
    <jsp-config>
        <jsp-property-group>
            <url-pattern>*.jsp</url-pattern>
            <el-ignored>false</el-ignored>
        </jsp-property-group>
    </jsp-config>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

 

jsp:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ page isELIgnored="true"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
    pageContext.setAttribute("pca", "pageContextAttribute");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>008index</title>
</head>
<body>
    EL result is :
    <p>${pageScope.pca }</p>
</body>
</html>

 

相关文章:

  • 2021-11-12
  • 2022-03-06
  • 2022-03-08
  • 2022-12-23
  • 2022-12-23
  • 2021-06-02
  • 2021-06-16
  • 2021-12-29
猜你喜欢
  • 2021-12-18
  • 2021-04-07
  • 2022-01-28
  • 2021-11-29
  • 2021-05-19
  • 2021-09-25
相关资源
相似解决方案