IDEA 社区版集成TOMCAT

Posted yjjddd85

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA 社区版集成TOMCAT相关的知识,希望对你有一定的参考价值。

直接在POM.XML中添加以下内容

<plugin>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat7-maven-plugin</artifactId>
    <version>2.2</version>
    <configuration>
        <port>8888</port>
        <path>/</path>
        <contextFile>src/main/webapp/META-INF/context.xml</contextFile>
    </configuration>
</plugin>

该插件会自动下载一个嵌入式的TOMCAT,可以在configuration配置节里面对这个嵌入式的TOMCAT配置端口,目录和content.xml信息。

要运行这个TOMCAT,需要在IDEA-RUN-DEBUG,editconfiguration,新增-MAVEN,名称输入TOMCAT7,commandline为:tomcat7:run

关于tomcat7-maven-plugin的官方信息见:http://tomcat.apache.org/maven-plugin-trunk/tomcat7-maven-plugin/usage.html

 










以上是关于IDEA 社区版集成TOMCAT的主要内容,如果未能解决你的问题,请参考以下文章

idea免费版够用吗

免费版的 IDEA 为啥不能使用 Tomcat ?

idea的商业版和社区版的区别

idea社区版阉割了哪些功能

IntelliJ IDEA 旗舰版与社区版有啥不同

IDEA的第一个JavaEE项目&集成TomcatJrebelGit插件