欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

eclipse改变项目发布路径的问题

程序员文章站 2022-07-13 15:31:18
...

项目发布省去前面的项目名:

Dynamic Web Project
右键项目 – properties – WebProjectSetting – 修改Context root为 /
Maven

	<build>
		<plugins>
			<!--跳过测试类打包  -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<skip>true</skip>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.tomcat.maven</groupId>
				<artifactId>tomcat7-maven-plugin</artifactId>
				<version>2.2</version>
				<configuration>
					<!--端口号  -->
					<port>8092</port>
					<!--项目发布路径  -->
					<path>/</path>
				</configuration>
			</plugin>
		</plugins>
  </build>

maven build,看使用什么版本的tomcat,如果使用tomcat7
加上:tomcat7:run
错误:tomcat:run