Eclipse中配置tomcat三种方式

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 运行成功

posted @ 2024-03-17 16:20  DawnTraveler  阅读(1362)  评论(0编辑  收藏  举报