只需要在pom.xml檔案中新增
1 <build> 2 <finalName>MySSM</finalName> 3 <!-- 指定部署的伺服器型別 --> 4 <plugins> 5 <!-- <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat6-maven-plugin</artifactId> 6 <version>2.2</version> </plugin> --> 7 <plugin> 8 <groupId>org.apache.tomcat.maven</groupId> 9 <artifactId>tomcat7-maven-plugin</artifactId> 10 <version>2.2</version> 11 <configuration> 12 <port>8080</port> 13 <path>/MySSM</path> 14 <uriEncoding>UTF-8</uriEncoding> 15 <server>tomcat7</server> 16 </configuration> 17 <!-- 在打包的時候執行這個容器 --> 18 <executions> 19 <execution> 20 <phase>package</phase> 21 <goals> 22 <goal>run</goal> 23 </goals> 24 </execution> 25 </executions> 26 </plugin> 27 </plugins> 28 </build>
對專案進行debug後package進行啟動後即可