总共有两种方法:
1. maven-tomact插件 无需单独安装tomact即可发布,调试使用
用maven项目,只需在pom.xml中配置:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<uriEncoding>UTF-8</uriEncoding>
<path>/ServletT</path>
<finalName>ServletT</finalName>
<server>tomact</server>
</configuration>
</plugin>
不要写错,我就写错花了一下午才看出来。
然后修改一下项目的Run As->Run Configurations
2.