Spring boot 访问静态资源

1 首先把下面库加上


        org.springframework.boot
        spring-boot-starter-parent
        1.5.13.RELEASE
    


            org.springframework.boot
            spring-boot-starter-web

2.其次去 org.springframework.boot.autoconfigure.web.ResourceProperties

private static final String[] CLASSPATH_RESOURCE_LOCATIONS = {
            "classpath:/META-INF/resources/", "classpath:/resources/",
            "classpath:/static/", "classpath:/public/" };

系统默认的是以这几个开头。

3.建立文件 index.html 是默认页面  启动http://localhost:8020,端口口设置是在application.yml文件里设置的

Spring boot 访问静态资源_第1张图片

4.启动http://localhost:8020 

Spring boot 访问静态资源_第2张图片

5.点击login

Spring boot 访问静态资源_第3张图片

 

你可能感兴趣的:(Spring boot 访问静态资源)