JSTL與Struts2標籤的使用對比

2021-08-31 14:03:27 字數 782 閱讀 4651

1. 條件標籤

jstl:

1 2

3 4

5 6 18}">

7 8

9 10

11 12

13 struts2:

1 2

3 4 18">

5 6

7 8

2. 迭代標籤

jstl:

1 2

3 4

5 6

7 8

struts2:

1 2

3 4

5 6

7 8

3. url相關標籤

jstl:

1 2

3 4

5 6 ">

7 8

9 10

11 12

13 14

15 16

struts2:

1 '>hello

2 3 cyanbomb

4 5 hello

解除的疑問,list遍歷問題

像這樣乙個list,裡面有3條記錄,每條記錄包含兩個物件,我把結果集(lstrooms)request到了頁面,想遍歷顯示rrmrooms裡的id,和rrmroomtype裡的name.

我用jstl實現如下:

1 2

3 4 $

5 $6

7 8

struts2實現如下:12

3 4

5 6 7 8

原文出處:

struts2標籤與jstl標籤的混合使用

1.以前一直使用jstl標籤,後來也開始使用struts2的一些標籤,畢竟struts2的有些標籤使用起來還是比較方便 專案中常常會出現struts2標籤和jstl標籤混和用的情況,比如在自定義標籤或者在迴圈標籤等 1.在jstl中使用struts2 jstl el struts2 通過struts...

JSTL與Struts2標籤的使用對比

1.條件標籤 jstl 1 c if test 2 c choose 3 c when test 4 font color blue 5c when 6 c when test 7 font color red 8c when 9 c otherwise 10 font color green 11...

早期struts2中使用JSTL標籤的bug

struts2已經整合了jsp標準的 jstl標籤用法,比如 action裡面定義的變數private int selleruin 除了標籤外,還可以使用如下jstl來輸出到頁面上 struts2會自動對http請求引數做型別轉換。請求引數selleruin 123會正常處理,而請求引數seller...