1. 程式人生 > >el表示式與jstl標籤不能用解決方法

el表示式與jstl標籤不能用解決方法

開發過程中有時會遇到這樣的問題,如下圖所示,el表示式與jstl標籤不能用。

 首先我們要確保所需要的maven依賴都要新增

<dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1.0</version>
    </dependency>
    
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>jsp-api</artifactId>
      <scope>provided</scope>
      <version>2.0</version>
    </dependency>
    
    <dependency>
	   <groupId>mysql</groupId>
	   <artifactId>mysql-connector-java</artifactId>
	   <version>5.1.25</version>
    </dependency>
    
    <dependency>
       <groupId>jstl</groupId>
       <artifactId>jstl</artifactId>
       <version>1.2</version>
    </dependency>
    
    <dependency>
	   <groupId>taglibs</groupId>
	   <artifactId>standard</artifactId>
	   <version>1.1.2</version>
    </dependency>
  </dependencies>

新增相關依賴後,若還是出現上面無法正常顯示的情況,可以嘗試一下的解決方法:

我認為這不是JSTL的問題,${emp.role}是EL(表達語言),它不起作用。

我們可以在JSP檔案設定

<%@ page isELIgnored="false" %>

或者在web.xml設定 

<el-ignored>true</el-ignored>

 它應該是false預設,但如果你使用的servlet版本低於2.4,則預設為true,所以在這種情況下,你需要將其設定為falseweb.xml

<jsp-config>
    <jsp-property-group>
        <url-pattern>*.jsp</url-pattern>
        <el-ignored>true</el-ignored>
    </jsp-property-group>
</jsp-config>

 您有3.1依賴項版本,但使用的是web.xml檔案2.3版本。要使用Servlet 3.1嘗試將您更改web.xml為:

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

    rest of the TAGs
</web-app>

同時刪除 

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">