其他分享
首页 > 其他分享> > 在idea中新建maven项目

在idea中新建maven项目

作者:互联网

1.配置idea中maven设置

1.创建普通java项目

2.创建web项目

   <plugin>
          <groupId>org.apache.tomcat.maven</groupId>
          <artifactId>tomcat7-maven-plugin</artifactId>
          <version>2.2</version>
          <configuration>
              <port>8080</port>
              <path>/test</path>
              <uriEncoding>UTF-8</uriEncoding>
              <server>tomcat7</server>
          </configuration>

      </plugin>

标签:tomcat7,web,新建,idea,maven,选择,test
来源: https://www.cnblogs.com/lwx11111/p/16212599.html