在 IDEA Community 中使用 Tomcat7

在 IDEA Community 中, 有一些企业开发特性被删减了,其中就包括为调试 Java Web 应用常用的启动 Tomcat 功能。 还好,有社区的支持,我们仍然可以很方便的在 IDEA Community 中运行、调试 Java Web 应用。

本文已在 IDEA Community 开发一个基于 maven 的 Java Web 应用为案例,演示如何在使用 Tomcat7 Plugin 启动该应用。

打开项目的 pom.xml 文件,在 Build 中添加 tomcat7-maven-plugin 插件。 如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<build>
<finalName>PetStore</finalName>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>8080</port>
<path>/</path>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

等 IDEA Community 下载完依赖库以后,可以直接在 Maven 视图 (可以通过菜单 View -> Tool Windows -> Maven 打开)选择 Plugins -> tomcat7 -> tomcat7:run-war , 然后右键选择 Run

如果需要进行断点调试,可以选择 Debug。

本文标题:在 IDEA Community 中使用 Tomcat7

文章作者:Morning Star

发布时间:2020年09月11日 - 18:09

最后更新:2021年04月16日 - 15:04

原始链接:https://www.mls-tech.info/java/tomcat7-in-idea-community/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。