Eclipse中配置tomcat三種方式

DawnTraveler發表於2024-03-17

0.原始方法

參考:war包部署到Tomcat下執行步驟
將Eclipse中javaweb工程打成war包,放在tomcat目錄的WebApp下

進入bin目錄下,雙擊startup.bat

1.使用server配置tomcat

1.1 在下方的server一欄中,右鍵選擇新建server

1.2 選擇你的tomcat版本,並點選Configure runtime environments 進行進一步配置

1.3 選擇你的tomcat來源,如果沒有,可以透過add手動新增

1.4 沒有也可以在後續新增中直接下載

1.5 執行專案

2.使用座標匯入tomcat

2.1 在pom.xml中匯入tomcat外掛

<!-- tomcat外掛配置 -->                               
<plugin>                                          
	<groupId>org.apache.tomcat.maven</groupId>    
	<artifactId>tomcat7-maven-plugin</artifactId> 
	<version>2.2</version>                        
	<configuration>                               
		<port>8099</port>                         
	</configuration>                              
</plugin>                                         

2.2 右擊專案,Run as>Maven build...

2.3 在Goals(執行命令中寫入)tomcat7:run

2.4 執行成功

相關文章