<jsp-config>
<taglib>
<taglib-uri>http://www.xxx.com</taglib-uri>
<taglib-location>/WEB-INF/tld/xxx.tld</taglib-location>
</taglib>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<include-prelude>/WEB-INF/jsp/preload.jsp</include-prelude>
</jsp-property-group>
</jsp-config>
<jsp-property-group>元素主要有八个子元素:
1.<description>:设定的说明;
2.<display-name>:设定名称;
3.<url-pattern>:设定值所影响的范围,如:/CH2或/*.jsp;
4.<el-ignored>:若为true,表示不支持EL语法;
& <scripting-invalid>:若为true,表示不支持<%scripting%>语法;
6.<page-encoding>:设定JSP网页的编码;
7.<include-prelude>:设置JSP网页的抬头;
8.<include-coda>:设置JSP网页的结尾。