Java EE 6のweb.xmlの書き方
ほとんど自分用メモですが、Java EE 6のweb.xmlの書き方というか、XMLスキーマの定義です。
jsp-configはいつもだいたい同じようなものを書くのでそれもテンプレで。
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="serv" version="3.0"> <jsp-config> <jsp-property-group> <url-pattern>*.jsp</url-pattern> <el-ignored>false</el-ignored> <page-encoding>UTF-8</page-encoding> <scripting-invalid>true</scripting-invalid> <include-prelude>/WEB-INF/jsp/common/common.jsp</include-prelude> </jsp-property-group> </jsp-config> </web-app>