Skip to content

Latest commit

 

History

History
70 lines (52 loc) · 2.59 KB

社区版安装tomcat.md

File metadata and controls

70 lines (52 loc) · 2.59 KB

idea社区版安装tomcat

idea社区版中默认不存在tomcat的插件,如果我们项目中需要使用tomcat作为web服务器的话,则需要我们手动进行安装插件。

在社区版中安装tomcat插件的方式有两种,一种是使用smart tomcat插件,另一种是使用maventomcat8-maven-plugin插件。

smart tomcat 安装方式

安装插件

  1. 通过settingsplugins仓库搜索smart tomcat进行安装,安装完成后重启idea
  2. 选择run按钮旁边的下拉框,点击Edit Configurations
  3. 弹出的run/debug configurations配置框中点击左上角的+号按钮。选择Smart Tomcat

smart tomcat 配置文件

名称 解释
Name 当前启动服务运行时名称
Tomcat Server 通过后面的...按钮选择本地tomcat的安装路径
Deployment webapp在项目中的路径
Context Path 部署项目的上下文路径
Server Port 服务器端口
AJP port 保持默认
Tomcat Port 保持默认
VM options JVM运行参数
Env options tomcat 运行环境参数

启动

选择run按钮旁边下拉框中刚刚配置的Name,使用rundebug进行运行。

maven配置运行tomcat

配置pom.xml

<build> 
    <finalName>appName</finalName> 
    <plugins> 
      <plugin> 
        <groupId>org.apache.tomcat.maven</groupId> 
        <artifactId>tomcat7-maven-plugin</artifactId> 
        <version>2.1</version> 
        <configuration> 
          <port>9090</port> 
          <path>/</path> 
          <uriEncoding>UTF-8</uriEncoding> 
          <server>tomcat7</server> 
        </configuration> 
      </plugin> 
    </plugins> 
 </build> 

配置运行方式

  1. 选择run按钮旁边的下拉框,点击Edit Configurations
  2. 弹出的run/debug configurations配置框中点击左上角的+号按钮。选择Maven

maven Paramters 配置

名称 解释
Working directory 项目根目录
Command line tomcat7:run

启动

选择run按钮旁边下拉框中刚刚配置的Name,使用rundebug进行运行。