使用 maven 外掛啟動 tomcat
在示例中,我們將使用 maven 外掛啟動 tomcat 7,可選擇為 REST 端點新增使用者/密碼保護。還增加了建立戰爭的功能。
在 tomcat 的外掛部分新增以下部分
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://localhost:8090/manager</url>
<server>localhost</server>
<port>8191</port>
<path>/${project.build.finalName}</path>
<tomcatUsers>src/main/tomcatconf/tomcat-users.xml</tomcatUsers>
</configuration>
</plugin>
確保新增了 maven war 外掛,並且位於/src/main/webapp/WEB-INF/web.xml 的位置存在 web.xml。以下是 war 外掛的示例。
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<webResources>
<resource>
<!-- this is relative to the pom.xml directory -->
<directory>/src/main/webapp/WEB-INF/web.xml</directory>
</resource>
</webResources>
</configuration>
</plugin>
(可選)將 tomcat-users.xml 新增到位置 src / main / tomcatconf。當 tomcat 啟動時,它將自動複製。
<tomcat-users>
<user name="user" password="password" roles="admin" />
</tomcat-users>
(可選)在 web.xml 中新增以下條目以保護 REST URL。
<!-- tomcat user -->
<security-constraint>
<web-resource-collection>
<web-resource-name>Wildcard means whole app requires authentication</web-resource-name>
<url-pattern>/helloworld/*</url-pattern>
<http-method>GET</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
</login-config>
從 eclipse 建立新的 maven 構建。選擇 war 專案,然後在 Goals 部分新增以下命令。
tomcat7:run
你會看到訊息。
[INFO] — tomcat7-maven-plugin:2.2:run(default-cli)@ web-service-ldap2 — [INFO]在 http:// localhost:8191 / 上執行戰爭