IDEA使用tomcat插件(tomcat-maven-plugin)运行及调试

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

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

  1. pom.xml文件里添加:

    org.apache.tomcat.maven
    tomcat7-maven-plugin
    2.2
    
        
        8080
        
        /mall
    

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

  1. 运行项目


    IDEA使用tomcat插件(tomcat-maven-plugin)运行及调试_第1张图片
    image.png
  2. 调试项目
    如果想断点调试怎么办呢?

IDEA使用tomcat插件(tomcat-maven-plugin)运行及调试_第2张图片
image.png

从配置里创建也是同理的

添加配置
IDEA使用tomcat插件(tomcat-maven-plugin)运行及调试_第3张图片
添加maven
IDEA使用tomcat插件(tomcat-maven-plugin)运行及调试_第4张图片
填好
可以了

使用Jetty插件同理。

你可能感兴趣的:(IDEA使用tomcat插件(tomcat-maven-plugin)运行及调试)