我有结构的mvc app:
-src
|-main (here java files)
|-resources (here only application.properties file)
|-webapp
|-css
|-js
|-img
|(jsp files)
我没有.xml文件(除了pom.xml)。
我从想法(使用java8)和所有okey,应用程序工作良好!
但是当我尝试构建.jar文件并执行它时,我遇到了问题:当我试图加载我的网站的任何页面时,我得到错误(java7):PWC6117: File "null" not found.
如果我使用java8,我会看到此错误:http://pastie.org/10430969
有没有办法建立jar,它会像想法一样工作吗?
这是我的pom文件的一部分:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<warSourceDirectory>src/main/webapp</warSourceDirectory>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>