6、IDEA整合Tomcat7外掛執行專案及Debug
阿新 • • 發佈:2018-12-14
tomcat7-maven-plugin 使用
pom :
<!-- 配置tomcat外掛 -->
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
< configuration>
<port>8080</port>
<path>/</path>
<uriEncoding>UTF-8</uriEncoding>
<server>tomcat7</server>
</configuration>
</plugin>
</ plugins>
</build>
注意 :
- path :是訪問應用的路徑 。例如我上面寫的是/SSM,則訪問路徑是 http://localhost/SSM
- port 是tomcat 的埠號
- uriEncoding URL按UTF-8進行編碼,這樣就解決了中文引數亂碼。
- Server 指定tomcat名稱。
重點
此時執行的時候只需要右擊右邊的命令,然後可以以 run模式 或者 debug模式 啟動專案,debug模式可以打斷點進行除錯
或者:
點選Run-》Edit Configurations後搜尋maven
Debug工程
1、 打個斷點
2、 Debug模式啟動manager
3、 正常模式啟動web
出現Debug超時,是由於Dubbo預設是一秒鐘,服務端不給響應,就超時了,可以配置一下
可以設定服務超時時間:
服務呼叫超時時間預設1秒,