javascript
JSP1.0\JSP2.0 区别
JSP2.0較JSP1.0新增功能如下:
??????? (1)Expression Language;
????????(2)新增Simple Tag和Tag File;
????????(3)web.xml新增<jsp-config>元素
Expression Language
??????????? JSP傳統方法:
<%
?????????? String str_count=request.getParameter("count");
??????????? int count=Integer.parseInt(str_count);
??????????? count=count+5;
???????????? out.println(count);
%>
EL語法:
???????????? count:${param.count+5}
新增Simple Tag 和Tag File
Hello.tag
<%
out.println("Hello from tag file");
%>
將它放在WEB-INF/tags/目錄下,在JSP頁面使用Hello.tag方法如下:
<%taglib prefix="myTag" tagdir="/WEB-INF/tags"%>
<myTag:Hello>
web.xml新增<jsp-config>元素
?<jsp-config>元素主要用來設定JSP相關配置,<jsp-config>包括<tablib>和<jsp-property-group>兩個子元素。其中<taglib>元素在JSP1.2時候已經存在;而<jsp-property-group>是JSP2.0新增的元素。
轉載于:https://www.cnblogs.com/wj110reg/articles/865716.html
總結
以上是生活随笔為你收集整理的JSP1.0\JSP2.0 区别的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 每周总结7.21
- 下一篇: mongoose 验证