Java 网络应用程序。 Spring开机。定位图像

Java Web Application. Spring Boot. Locating Images

我最近解决了在这个社区中定位图片的问题。你可以看看.

然而,一个回答说:

Your app is a Spring Boot app. I think that you can also try to use the facilities provided by Spring Boot for serving static content. Anyway, you are doing it right now because you are using webjars for css and js libs!!! Be consistent with the tech that you are using.

这意味着,建议将图像文件放在 /src/main/resources 而不是 /src/main/webapp

我如何使用 Spring Boot 为我提供的便利?

谢谢

Spring Boot 会自动配置生产就绪设置,并根据 maven/gradle 构建文件中声明的一些依赖项将 bean 添加到 Spring 项目。只要你遵循约定,那么你就不必做那么多的配置——"convention over configuration"。例如,一种约定是在资源类路径中加载图像和静态文件。参考文档:http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/