SpringBoot2.0入门(详细文档)二

文章目录

http其他请求

  • POST/uri 创建
  • DELETE/uri/xxx 删除
  • PUT/uri/xxx 更新或者创建
  • GET/uri/xxx 查看

看似地址一样其实请求方式不一样

SpringBoot2.x目录文件结构

简介:讲解SpringBoot目录文件结构和官网推荐的目录规范

  1. 目录结构
    src/main/java:存放代码
    ser/main/resources
    static:存放静态文件,比如css,js,image,(访问方式http://localhost:8080/js/main.js)
    templates:存储静态模板页面jsp,html,tpl
    config:存放配置文件,application.properties
    resources:
  2. 引入依赖Thymeleaf,如果要访问templates文件夹下的资源,需要引入
    以下依赖,进行页面的转发方式访问
java 复制代码
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

注意:如果不引入这个依赖包,html文件应该放在默认加载文件夹里面

比如resources,static,public这几个文件夹,才可以访问

  1. 同个文件的加载顺序,静态资源文件
    在SpringBoot中默认情况下,一共有5个位置可以:
    1. classpath:/META-INF/resources/
    2. classpath:/resources/
    3. classpath:/static/
    4. classpath:/public/
    5. /

SpringBoot默认会挨个从

META/resources>resources>static>public 里面找是否存在相应的资源,如果有则直接返回

所以访问这些目录下的资源时,在路径中可以体现上面的几个路径

  1. 默认配置
    1. 官网地址:https://springdoc.cn/spring-boot-application-configuration-tutorial/
    2. 自己配置
      1. 在resources目录下创建,application.properties
      2. 重写静态资源加载: spring.resources.static-locations = classpath:/META-
        INF/resources/,classpath:/resources/,classpath:/staticl,classpath:/public/
  2. 静态资源文件存储在CDN,他可以加快静态资源的访问速度。
    在大型的公司中可能会实现静态资源和java代码的分离。把静态资源的加载放到另外一个工程中使用。

SpringBoot2.x文件上传实战

简介:讲解HTML页面文件上传和后端处理实战

  1. 讲解SpringBoot文件上传MultipartFile file,源自SpringMVC
    1. 静态页面直接,不需要进行controller转发:localhost:8080/index.html
      注意点:
      如果想要直接访问html页面,则需要把html放在SpringBoot默认加载的文件夹下面
    2. MultipartFile 对象的transferTo方法,用于文件保存(效率和操作比原先用的FileOutStream方便和高效)
      a. 在static下面创建一个upload.html,页面内容如下
java 复制代码
<form action="/upload" method="post"  enctype="multipart/form-data" >
    文件:<input type="file"  name="head_img">
    姓名:<input name="username" >
    <input type="submit" value="上传">
</form>
复制代码
		b. 控制类中的代码如下
		upload.html中的文件name要和@RequestParam("head_img")一致
JAVA 复制代码
@RequestMapping("/upload")
@ResponseBody
public Object upload(@RequestParam("head_img") MultipartFile file, HttpServletRequest req){
    // 动态获取文件的真实路径,用于保存上传的文件
    String filepath =  "D:/test/";
    System.out.println(filepath);
    // 获取普通表单字段
    String username =  req.getParameter("username");
    System.out.println("用户名:"+username);

    // 获取文件的全名
    String filename =  file.getOriginalFilename();
    System.out.println("文件全名:"+filename);

    String suffixName =  filename.substring(filename.indexOf("."));
    System.out.println("后缀名:"+suffixName);

    filename = UUID.randomUUID() +  suffixName;
    File newFile = new  File(filepath+filename);
    try {
        file.transferTo(newFile);
    } catch (IllegalStateException | IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return filename;

}
复制代码
c.SpringBoot的默认上传文件大小为1M,如果要上传大于1M的文件需要在application.properties文件中设置:
java 复制代码
#单个文件大小和单次请求文件大小
spring.servlet.multipart.max-file-size=10Mb
spring.servlet.multipart.max-request-size=100Mb

文件上传和访问需要指定磁盘路径

这时候的文件是无法上传成功的:因为我们无法在jar中上传和访问一文件

  1. 解决方法如下:
    1. application.properties中增加下面配置
java 复制代码
#声明一个要上传的文件路径
web.images-path=D:/test
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/test/,file:${web.images-path}
相关推荐
cg501710 小时前
Spring Boot 的配置文件
java·linux·spring boot
橘猫云计算机设计14 小时前
基于springboot的考研成绩查询系统(源码+lw+部署文档+讲解),源码可白嫖!
java·spring boot·后端·python·考研·django·毕业设计
有一只柴犬14 小时前
深入Spring AI:6大核心概念带你入门AI开发
spring boot·后端
向阳25614 小时前
SpringBoot+vue前后端分离整合sa-token(无cookie登录态 & 详细的登录流程)
java·vue.js·spring boot·后端·sa-token·springboot·登录流程
XiaoLeisj15 小时前
【MyBatis】深入解析 MyBatis XML 开发:增删改查操作和方法命名规范、@Param 重命名参数、XML 返回自增主键方法
xml·java·数据库·spring boot·sql·intellij-idea·mybatis
风象南15 小时前
SpringBoot实现数据库读写分离的3种方案
java·spring boot·后端
CryptoPP15 小时前
springboot 对接马来西亚数据源API等多个国家的数据源
spring boot·后端·python·金融·区块链
清风絮柳15 小时前
52.个人健康管理系统小程序(基于springboot&vue)
vue.js·spring boot·毕业设计·前后端分离·健康管理系统·个人健康管理系统·个人健康管理小程序
forestsea16 小时前
使用 Spring Boot 和 GraalVM 的原生镜像
java·spring boot·spring native·原生映像
爱的叹息17 小时前
Spring Boot 集成Redis 的Lua脚本详解
spring boot·redis·lua