Apache Maven
Plugin Maven Tomcat
Buscar..
Iniciar Tomcat utilizando el complemento de Maven.
En el ejemplo, iniciaremos Tomcat 7 utilizando el complemento Maven, opcionalmente agregaremos la protección de usuario / contraseña para el punto final REST. También añadiendo característica de la construcción de la guerra.
Agregue la siguiente sección en la sección de plugin de pom para 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>
Asegúrese de que se haya agregado el complemento de guerra maven y web.xml esté presente en la ubicación /src/main/webapp/WEB-INF/web.xml. A continuación se muestra un ejemplo de plugin de guerra.
<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>
Opcionalmente, agregue tomcat-users.xml a la ubicación src / main / tomcatconf. Se copiará automáticamente cuando se inicie Tomcat.
<tomcat-users>
<user name="user" password="password" roles="admin" />
</tomcat-users>
Opcionalmente, agregue la siguiente entrada en web.xml para proteger la URL de REST.
<!-- 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>
Crear nueva construcción maven de eclipse. Seleccione el proyecto de guerra y en la sección de Objetivos agregue el siguiente comando.
tomcat7:run
Verás el mensaje.
[INFO] --- tomcat7-maven-plugin: 2.2: run (default-cli) @ web-service-ldap2 --- [INFO] Ejecutando war en http: // localhost: 8191 /