错误原因:没有配置静态资源访问的路径
解决方法:
第一种:新建一个config包,然后在config包下新建一个WebConfig类
package com.yskjgs.base.config;//改成自己类所在的目录
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
/**
* @program: hos-test
* @description: wu
* @create: 2019-05-17 15:10
**/
@Configuration
public class WebConfig extends WebMvcConfigurationSupport {
@Override
protected void addResourceHandlers(ResourceHandlerRegistry registry) {
//static是我在resources下面创建的文件夹,改成自己的文件夹名即可
registry.addResourceHandler("/**").addResourceLocations("classpath:/static/");
super.addResourceHandlers(registry);
}
}
第二种:
1.如果是在application.yml中就配置如下:
spring:
resources:
static-locations: classpath:/static/
2.如果是在applicaton.properties中就配置如下:
spring.resources.static-locations=classpath:/static/
个人观点: 对于以上两种解决方法,觉得那种方便就配置哪种