WEB-INF not included in WebApp using SpringBoot, Spring-MVC and Maven

牧云@^-^@ 提交于 2021-02-20 09:06:56

问题


I have a webapp using Spring-MVC built with Maven. When I generate the JAR file the app start just fine. The controller is execute but when I reach this part:

@RequestMapping(value = "/test-block", method = RequestMethod.GET)
public ModelAndView block(Model model) {
    return new ModelAndView("templates/test-block");
}

I get this error:

There was an unexpected error (type=Not Found, status=404).
/WEB-INF/templates/test-block.jsp

Note that debugging or running in the IDE works fine.

My folder:

src
|--main
   |--java
      |--com.xxx // sources
      webapp
      |--WEB-INF
         |--templates
            |--*.jsp // jsp files
      resources
      |--application.properties

My application properties:

spring.mvc.view.prefix=/WEB-INF/
spring.mvc.view.suffix=.jsp

I checked the generated JAR file and I can't see WEB-INF anywhere.

edit:

pom file:

    <packaging>war</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>8</source>
                    <target>8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

回答1:


You should create a .war rather than a .jar for a web application and you will see the WEB-INF folder.

Also change

spring.mvc.view.prefix=/WEB-INF/ to spring.mvc.view.prefix=/WEB-INF/templates and

ModelAndView("templates/test-block") to ModelAndView("test-block") to address the 404 error.




回答2:


Reference the Spring Boot documentation on serving static content.

Of note:

By default, Spring Boot serves static content from a directory called /static (or /public or /resources or /META-INF/resources) in the classpath or from the root of the ServletContext. It uses the ResourceHttpRequestHandler from Spring MVC so that you can modify that behavior by adding your own WebMvcConfigurer and overriding the addResourceHandlers method.

...

You can also customize the static resource locations by using the spring.resources.static-locations property (replacing the default values with a list of directory locations).

...

Do not use the src/main/webapp directory if your application is packaged as a jar. Although this directory is a common standard, it works only with war packaging, and it is silently ignored by most build tools if you generate a jar.

So, what you're seeing is the expected behavior. You can either move your templates to one of the expected locations, customize the default locations, or use war packaging.




回答3:


Spring boot looks for resources folder for web pages. Webapp folder is not in classpath of spring boot app. You need to use a maven plugin to copy your webapp folder into the jar/war file. It works in IDE since it knows exactly where to find the web pages.



来源:https://stackoverflow.com/questions/52670491/web-inf-not-included-in-webapp-using-springboot-spring-mvc-and-maven

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!