Skip to content

Instantly share code, notes, and snippets.

@yusuiked
Created February 13, 2014 03:08
Show Gist options
  • Save yusuiked/8969055 to your computer and use it in GitHub Desktop.
Save yusuiked/8969055 to your computer and use it in GitHub Desktop.
JavaEE6 の web.xml の書き方。JSPテンプレートも込みで。
<?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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment