- pom引入插件
<plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.4.53.v20231009</version> <configuration> <webApp> <contextPath>/</contextPath> </webApp> </configuration> </plugin>
- 项目设置为war形式
<packaging>war</packaging>
- Idea的Edit Configurations 然后选择Maven 点击 ‘+号’ 进行配置
a. Name: spring-mvc-hello-webmvc(根据个人爱好自定义) b. Working directory: 选中要运行的项目 c. Command line: clean jetty:run
- 点击 Debug 图标运行项目
文章来源地址https://www.toymoban.com/news/detail-724463.html
文章来源:https://www.toymoban.com/news/detail-724463.html
到了这里,关于Maven Jetty运行Spring MVC项目的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!