maven Web项目部署(10)

步骤:

1.使用maven创建web项目
2.配置maven项目
3.在项目pom.xml配置jetty
  • jetty和tomcat一样都时servlet容器
  • pom.xml的build元素的plugins子元素下
                
                
                    org.eclipse.jetty
                    jetty-maven-plugin
                    
                    
                        5
                        
                        
                            
                                8787
                                60000
                            
                        
                        
                        
                            /test
                        
                    
                
4.右击pom.xml > Run As >Maven build
maven Web项目部署(10)_第1张图片
5.输入clean compile jetty:run 点击Run
maven Web项目部署(10)_第2张图片
image.png

部署完成

要部署到Tomcat把项目打包为war发布就可以了

你可能感兴趣的:(maven Web项目部署(10))