其他分享
首页 > 其他分享> > SpringBoot访问资源文件

SpringBoot访问资源文件

作者:互联网

一:用idea 创建 springboot 项目:

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

二:具体代码内容:


1:访问静态资源文件

1:代码结构

image


2:启动项目

image


3:访问静态资源:图片

image

image


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 文件

image

image


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

image

image

image







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

标签:文件,springboot,静态,DemoApplication,访问,static,资源,SpringBoot
来源: https://www.cnblogs.com/ios9/p/14406611.html