2015年1月28日 星期三

[JSP]使用 JSTL 及 EL 注意事項

使用 內建的 Maven 建立一個 webapp 時,其 web.xml 裡面預設為 2.3的版本

若要使用 JSTL 及 EL 須注意到 JSP / Servlet 之間的對應關係

JSP/Servlet Version

Servlet Version

JSP Version

JSTL Version

Java EE Version

2.5

2.1

1.2

5

2.4

2.0

1.1

1.4

2.3

1.2

1.0

1.2

簡單說,若您引入的 JSTL API版本是 1.2 的,那您的 Web.xml 中的引入定義就要視 2.5 甚至是以上的,如使用 Maven 引入

<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
那 Web.xml 內容就要設定如下
(1)
<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>web-app-25</display-name>
...
</web-app>
(2)
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<display-name>Archetype Created Web Application</display-name>
</web-app>
參考文獻:

How to Reference and Use JSTL in your Web Application


參考程式:


使用 Spring JPA Data 完成 CRUD 動作 下載 


程式參照 :


Spring JPA Data + Hibernate + MySQL + MAVEN

沒有留言 :

張貼留言