首页 > 学院 > 操作系统 > 正文

Maven项目在idea软件debug

2024-06-28 16:02:33
字体:
来源:转载
供稿:网友

1、把maven项目import 进来(maven工程区导入) (全默认下一步就行了)

2、添加maven项目运行命令,把项目debug运行起来

3、也可与在终端窗口下,运行

在win的目录下终端窗口

mvn tomcat7:run   或者  mvn tomcat7:depoly (热部署)   

在idea的终端

tomcat7:run   或者 tomcat7:depoly

4、jetty 容器热部署

 			<plugin>				<groupId>org.mortbay.jetty</groupId>				<artifactId>jetty-maven-plugin</artifactId>				<version>8.1.14.v20131031</version>				<configuration>					<scanIntervalSeconds>1</scanIntervalSeconds> <!-- 热部署 -->					<webApp>						<contextPath>/</contextPath>												<sessionHandler implementation="org.eclipse.jetty.server.session.SessionHandler">							<sessionManager								implementation="org.eclipse.jetty.server.session.HashSessionManager">								<storeDirectory>${basedir}/target/sessions</storeDirectory>								<idleSavePeriod>1</idleSavePeriod>							</sessionManager>						</sessionHandler>					</webApp>				</configuration>			</plugin>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表