问题
我的spring-boot应用程序最近更改了从主机/端点到主机/中间/端点的路由。自从更改以来,我遇到了一个问题,即相对于新的url结构没有找到资源。在此之前,我可以参考css样式表等资源,例如 link(rel =' stylesheet',href =' css / style.css'),但现在记录器显示错误,表示无法在 /middleman/css/style.css 中找到资源。
从我的研究中,我发现我需要做的是使用资源处理程序注册表。我创建了一个(如下所示)但它似乎没有工作。我认为问题是即使我现在有资源注册表,我也没有在注册表中引用资源。解决此问题的正确方法是什么,并且无论端点如何,所有资源都指向同一位置的负载?我很可能会错过一些明显的SOP
注意:这是我项目的一个愚蠢的代表,以便在不提供不必要信息的情况下提供正在发生的事情的想法。
项目结构
src
main
java
com.mystuff.cool
configurations
ResourceConfiguration.java
controllers
RoutingController.java
application
Application.java
resources
static
css
footer.css
style.css
images
place1.png
location1.png
spot1.png
favicon.ico
javascripts
layout.js
templates
home.jade
申请类
@ComponentScan(basePackages = {"my.packages"})
@EnableAutoConfiguration
@EnableSAMLSSO
@Configuration
public class Application
{
public static void main(String[] args)
{
SpringApplication.run(new Object[]{ Application.class, ServiceConfig.class, ResourceConfiguration.class}, args);
}
}
资源配置
@EnableWebMvc
@Configuration
public class ResourceConfiguration extends WebMvcConfigurerAdapter
{
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry)
{
registry.addResourceHandler("/css/**").addResourceLocations("/css/").setCachePeriod(31556926);
registry.addResourceHandler("/img/**").addResourceLocations("/img/").setCachePeriod(31556926);
registry.addResourceHandler("/js/**").addResourceLocations("/js/").setCachePeriod(31556926);
}
@Override
public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer)
{
configurer.enable();
}
}
控制器
@Controller
public class RoutingController
{
@RequestMapping("/house/home")
public String home(Model model)
{
model.addAttribute("title", "Home is where the heart is");
commonModelTribs(model);
return "home";
}
}
首页
doctype html
html
title Place-spedia #{title}
link(rel='icon', href='images/favicon.ico')
link(rel='stylesheet', href='css/style.css')
script(src='javascripts/layout.js')
link(rel='stylesheet', href='css/footer.css')
body
div#footer-icons
a(href='place1')
img#place1(src="images/place1.png")
a(href='location1')
img#location1(src="images/location1.png")
a(href='spot1')
img#spot1(src='images/spot1.png')
答案 0 :(得分:1)
如果您使用的是spring boot,则不必担心资源配置,因为您已经通过自动配置配置了资源目录。自动配置的默认行为是查看resources/static
。
您的问题与您的href值有关,请尝试插入前导斜杠:
link(rel='icon', href='/images/favicon.ico')
link(rel='stylesheet', href='/css/style.css')
script(src='javascripts/layout.js')
link(rel='stylesheet', href='/css/footer.css')
Spring正在将您的应用程序路由到一个新的相对路径,因此通过将前导/
放在href
属性中,您告诉路由器完全在static
目录中查找相对来自middle
目录。