maven Tomcat7 xml文件配置

pom.xml 文件配置


<plugin>
  <groupId>org.apache.tomcat.maven</groupId>
  <artifactId>tomcat7-maven-plugin</artifactId>
  <version>2.2</version>
  <configuration>
    <url>http://localhost:8080/manager/text</url> <!-- tomcat管理路徑 -->
    <server>tomcat7</server> <!-- 與settings.xml文件中Server的id相同 -->
    <uriEncoding>utf-8</uriEncoding>
    <port>8080</port><!--服務器端口號8080可以省去-->
    <path>/</path> <!-- 應用的部署位置 -->
    <contextReloadable>true</contextReloadable>
    <systemProperties>
      <java.util.logging.SimpleFormatter.format>[%4$s] %1$tF %1$tT %3$s %5$s %n
      </java.util.logging.SimpleFormatter.format>
    </systemProperties>
  </configuration>
  <executions>
    <execution>
      <id>tomcat-run</id>
      <phase>test</phase>
      <goals>
        <goal>run</goal>
      </goals>
    </execution>
  </executions>
</plugin>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章