设置静态资源的映射

1、当没有设置静态资源映射时,我们需要将静态资源放在static下面。

访问login.html的路径是:http://localhost:8080/pages/login.html

访问index.html的路径是:http://localhost:8080/index.html

 设置静态资源的映射_第1张图片


2、当设置静态资源访问时,静态资源可以直接放在resources下面

访问login.html的路径是:http://localhost:8080/pages/login.html

 设置静态资源的映射_第2张图片


import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;


//静态资源访问配置
@Configuration
public class WebMvcConfig extends WebMvcConfigurationSupport {
    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        //路径中带有/pages/** 会映射到类路径下的(也就是resources下) /pages/
        registry.addResourceHandler("/pages/**").addResourceLocations("classpath:/pages/");
    }
}

你可能感兴趣的:(java配置,java)