IntelliJ IDEA 配置Tomcat
程序员文章站
2022-07-03 19:09:18
文章目录1. 用tomcat插件(常用)2. 本地配置tomcat Server1. 用tomcat插件(常用)在网站 https://mvnrepository.com/ 内搜索所需的内容,搜索tomcat将如下代码复制到pom.xml文件的built下配置 org.apache.tomca...
1. 用tomcat插件(常用)
在网站 https://mvnrepository.com/ 内搜索所需的内容,搜索tomcat
将如下代码复制到pom.xml文件的built下配置
<!-- 导入tomcat插件-->
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>8088</port>
<path>/</path>
</configuration>
</plugin>
</plugins>
</build>
如果没有显示插件,把built内其他所有内容去掉
如图点击tomcat7:run-war运行,若显示项目网址则成功。
2. 本地配置tomcat Server
打开Run下的Edit Configurations
选择Tomcat Server下的local
命名和选择即可
本文地址:https://blog.csdn.net/qq_43881663/article/details/112827594
推荐阅读
-
Intellij idea远程debug连接tomcat实现单步调试
-
详解IntelliJ IDEA 中如何配置多个jdk版本即(1.7和1.8两个jdk都可用)
-
IntelliJ IDEA maven 构建简单springmvc项目(图文教程)
-
详解Intellij IDEA中.properties文件中文显示乱码问题的解决
-
iOS-Mac配置Tomcat教程 Mac环境配置Tomcat教程
-
让IntelliJ IDEA支持.vue文件的方法
-
IntelliJ IDEA 2017.1.4 x64配置步骤(介绍)
-
Intellij IDEA实现SpringBoot项目多端口启动的两种方法
-
最新IntelliJ IDEA2017.3 激活方式
-
Eclipse配置tomcat发布路径的问题wtpwebapps解决办法