美文网首页Java服务
IDEA使用tomcat插件(tomcat-maven-plug

IDEA使用tomcat插件(tomcat-maven-plug

作者: 李不言被占用了 | 来源:发表于2020-12-02 12:54 被阅读0次

IDEA如果是社区版不支持web项目,也就是说没法添加tomcat/jetty这种服务器。

如果你是maven项目(gradle类似),在项目里添加一个maven的tomcat插件,其实就能运行web项目了。

  1. pom.xml文件里添加:
<plugin>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat7-maven-plugin</artifactId>
    <version>2.2</version>
    <configuration>
        <!-- 通过maven tomcat7:run运行项目时,访问项目的端口号 -->
        <port>8080</port>
        <!-- 项目访问路径  本例:localhost:9090,  如果配置的aa, 则访问路径为localhost:9090/aa-->
        <path>/mall</path>
    </configuration>
</plugin>

这里使用的是tomcat7-maven-plugin版本是2.2,也可以使用其他的。

  1. 运行项目


    image.png
  2. 调试项目
    如果想断点调试怎么办呢?

image.png

从配置里创建也是同理的

添加配置 添加maven 填好 可以了

使用Jetty插件同理。

相关文章

网友评论

    本文标题:IDEA使用tomcat插件(tomcat-maven-plug

    本文链接:https://www.haomeiwen.com/subject/ixbywktx.html