java web 專案
mvn archetype:create -DarchetypeArtifactId=maven-archetype-web -DgroupId=idv.neil.web119 -DartifactId=web119
cd web119
mvn eclipse:eclipse
2012/2/22 - 修正
mvn archetype:generate -DarchetypeArtifactId=maven-archetype-webapp -DgroupId=idv.neil.web119 -DartifactId=web119
2012/7/25 - 補充
Maven Archetype Plugin 目前無法指定產生的 Servlet 版本,寫死為 2.3,只能在產生後,手動修改 web.xml 為想要的版本。
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
</web-app>
Servlet 2.5 的 web.xml 範本。
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
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_2_5.xsd"
version="2.5">
...
</web-app>
Servlet 3.0 的 web.xml 範本。
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
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"
version="3.0"
metadata-complete="true">
...
</web-app>
沒有留言:
張貼留言