一:用idea 创建 springboot 项目:

详情请参考:《使用IDEA创建一个springboot项目

二:具体代码内容:


1:访问静态资源文件

1:代码结构

SpringBoot访问资源文件_SpringBoot


2:启动项目

SpringBoot访问资源文件_SpringBoot _02


3:访问静态资源:图片

SpringBoot访问资源文件_SpringBoot _03

SpringBoot访问资源文件_SpringBoot _04


4:DemoApplication

package com.alancode.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DemoApplication {

	public static void main(String[] args) {
		SpringApplication.run(DemoApplication.class, args);
	}

}


5:访问资源 html 文件

SpringBoot访问资源文件_SpringBoot _05

SpringBoot访问资源文件_SpringBoot _06


6:访问静态资源(static)文件夹的子文件夹中的资源方式

SpringBoot访问资源文件_SpringBoot _07

SpringBoot访问资源文件_SpringBoot _08

SpringBoot访问资源文件_SpringBoot _09



7:静态资源(static)文件夹下的html文件加载 静态资源路径下的任意一个图片资源

SpringBoot访问资源文件_SpringBoot _10

SpringBoot访问资源文件_SpringBoot _11






2:ServletContext 根目录下 访问静态资源方式

1:代码结构

在src/main/webapp 目录名称必须要 webapp

SpringBoot访问资源文件_SpringBoot _12

SpringBoot访问资源文件_SpringBoot _13


SpringBoot访问资源文件_SpringBoot _14

SpringBoot访问资源文件_SpringBoot _15

SpringBoot访问资源文件_SpringBoot _16









------------------------------

为人:谦逊、激情、博学、审问、慎思、明辨、 笃行
学问:纸上得来终觉浅,绝知此事要躬行
为事:工欲善其事,必先利其器。
转载请标注出处!