Idea外掛
點選檢視程式碼
pom.xml中
<build>
<plugins>
<!--Tomcat外掛 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>80</port><!--訪問埠號 -->
<!--專案訪問路徑
未配置訪問路徑: http://localhost:80/tomcat-demo2/a.html
配置/後訪問路徑: http://localhost:80/a.html
如果配置成 /hello,訪問路徑會變成什麼?
答案: http://localhost:80/hello/a.html
-->
<path>/</path>
</configuration>
</plugin>
</plugins>
</build>