Jetty Annotation Timeout Reason



https://stackoverflow.com/questions/25229710/jetty-annotation-timeout-reason

报错的配置信息:
<plugin>
              <groupId>org.eclipse.jetty</groupId>
              <artifactId>jetty-maven-plugin</artifactId>
              <version>9.4.7.v20170914</version>
          </plugin>


fixed错误的配置:
<plugin>
              <groupId>org.eclipse.jetty</groupId>
              <artifactId>jetty-maven-plugin</artifactId>
              <version>9.4.7.v20170914</version>
              <configuration>
                  <webAppConfig>
                      <contextPath>/</contextPath>
                      <webInfIncludeJarPattern>.*/foo-[^/]*\.jar$|.*/classes/.*</webInfIncludeJarPattern>
                  </webAppConfig>
              </configuration>
          </plugin>

猜你喜欢

转载自mutourenoo.iteye.com/blog/2398121
今日推荐