使用 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 / 上运行战争