好久沒用過el表示式了,今天用了竟然不起作用。先說下我的開發環境吧,用的是jdk1.5,tomcat5.5。最後的解決方案是在jsp頁面加<%@ page iselignored="false" %> 就ok了。
下面是官方documention中iselignored attribute的詳解:
the iselignored attribute
• format
– <%@ page iselignored="false" %>
– <%@ page iselignored="true" %>
purpose
– to control whether the jsp 2.0 expression language
(el) is ignored (true) or evaluated normally (false).
• notes
– if your web.xml specifies servlets 2.3 (corresponding to
jsp 1.2) or earlier, the default is true
• but it is still legal to change the default—you are permitted
to use this attribute in a jsp-2.0-compliant server
regardless of the web.xml version.
– if your web.xml specifies servlets 2.4 (corresponding to
jsp 2.0) or earlier, the default is false
為了不在每個頁面新增<%@ page iselignored="false" %>,網上說可以在web.xml中這樣配置
*.jsp
false
EL表示式 EL表示式顯示資料
1.基本資料型別與string型別 request.setattribute scores 滿分 request.setattribute a 1 頁面顯示為 滿分2.自定義型別 a 在頁面中要顯示的自定義類成員變數必須要有getter b 如何顯示 建立乙個student類 request.set...
El表示式使用
用el表示式取資料的時候,通常用.號,如果.號取不出資料,在換用 servlet直接傳資料 string date 用來測試el表示式 request.setattribute date date servlet封裝資料在物件中傳送 1 person person new person person...
EL表示式筆記
最近寫點小專案,el表示式老是出現這錯那錯的,為此花費了不少時間,今天隨便記一下 老是混淆 用 用 不能用等等 s hidden當我們需要在表單裡面用到時,value裡面又不准用,用 如 或者 當是迭代的結果時,這樣不行。最終試來試去,用時可以了 discussion是 iterator 中id 取...