maven jetty 启动正常,运行却一直报404

jetty插件配置如下

   
                 
                
                  org.eclipse.jetty
                  jetty-maven-plugin
                  9.2.8.v20150217
                 
                   
                      8081
                   

                    shutdown
                    9966
                   
                    2
                    
                    
                    manual
                    true
                  
                   
                     
                      /
                          src/main/conf/webdefault.xml
                   

                
              
                   
                      target/access-yyyy_mm_dd.log
                      yyyy_MM_dd
                      yyyy-MM-dd HH:mm:ss
                      GMT+8:00
                      true
                      true
                      120
                      true
                   

                 

               

或者

打印日志

[INFO] webAppSourceDirectory E:\gls\GLS-APP\GlsAPI\src\main\webapp does not exist. Trying E:\gls\GLS-APP\GlsAPI\target\webapp-tmp


原来jetty插件配置webAppSourceDirectory默认是\src\main\webapp,而我项目静态资源路径是webroot/

加上配置  webroot/,成功


你可能感兴趣的:(错误总结,jetty)