Intellij IDEA社区版使用


Intellij IDEA社区版使用tomcat

  1. 创建maven web项目
  2. 在pom.xml中添加tomcat的 tomcat7-maven-plugin 插件即可
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat7-maven-plugin</artifactId>
            <version>2.2</version>
            <configuration>
                <port>9999</port>
                <path>/</path>
            </configuration>
        </plugin>
    </plugins>
</build>
  1. 在Edit Configrations中添加tomcat插件的配置, 保存后即可运行
  1. Come on!
  1. 插件springassist


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM