SpringMvc--文件上传下载

news2024/11/25 2:56:30

一.什么是SpringMvc文件上传下载

二.文件上传

编写hpjyController类

编写upload.jsp

建立一个储存图片的文件夹

​编辑 

 编写PageController来处理页面跳转

编写工具类PropertiesUtil

编写resource.properties类

编写list.jsp

 测试结果

三.文件下载

编写hpjyController类

编写list.jsp

 测试结果

四.jrebel&多文件上传

下载JRebel插件

下载好后重启idear

​编辑下载好后要先打开代理ReverseProxy_windows_amd64.exe(顺序不能错)

jrebel项目启动

注册jrebel

测试结果

设置离线状态

​编辑 多文件上传

编写hpjyController类

编写upload.jsp

测试结果


一.什么是SpringMvc文件上传下载

Spring MVC是一个基于Java的MVC(Model-View-Controller)框架,用于构建Web应用程序。文件上传下载是指在Web应用中将文件从客户端上传到服务器或从服务器下载到客户端的过程。

在Spring MVC中,文件上传下载可以通过以下几个步骤完成:

文件上传:

  1. 在表单中设置enctype为"multipart/form-data",以支持文件上传。
  2. 使用MultipartFile接口作为Controller方法的参数,用于接收上传的文件。
  3. 使用MultipartResolver来解析并处理上传的文件。

文件下载:

  1. 设置正确的响应头信息,包括文件类型(Content-Type)和文件名(Content-Disposition)。
  2. 将文件内容写入响应体中,以便客户端可以下载。

Spring MVC提供了许多方便的工具和类来简化文件上传下载的过程,例如MultipartFile、MultipartResolver、ResponseEntity等。您可以根据具体的需求,结合这些功能进行文件上传下载的实现。

二.文件上传

编写hpjyController类

package com.xy.web;

import com.xy.biz.hpjyBiz;
import com.xy.model.hpjy;
import com.xy.utils.PageBean;
import com.xy.utils.PropertiesUtil;
import org.apache.commons.io.FileUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;
import java.util.List;

/**
 * @author bing人
 * @site
 * @company xy集团
 * @create 2023-09-08 19:13
 */
@Controller
@RequestMapping("/hpjy")
public class hpjyController {
    @Autowired
    private hpjyBiz hpjyBiz;
    //增
    @RequestMapping("/add")
    public  String add(hpjy hpjy){
        int i = hpjyBiz.insertSelective(hpjy);
        return  "redirect:list";
    }
    //删
    @RequestMapping("/del")
    public  String del(hpjy hpjy){
        hpjyBiz.deleteByPrimaryKey(hpjy.getId());
        return "redirect:list";
    }
    //改
    @RequestMapping("/edit")
    public String  edit(hpjy hpjy){
        hpjyBiz.updateByPrimaryKeySelective(hpjy);
        return "redirect:list";
    }

    //文件上传
    @RequestMapping("/upload")
    public String upload(hpjy hpjy,MultipartFile xxx){
        try {
        //后端可以直接利用MultipartFile类,接收前端传递到后台的文件
        //将文件转成流,然后写入服务器(某一个硬盘)
        //上传的图片真实存放地址
        String dir= PropertiesUtil.getValue("dir");
        //网络访问地址
        String server= PropertiesUtil.getValue("server");
        String filename = xxx.getOriginalFilename();
        System.out.println("文件名:"+filename);
        System.out.println("文件类别:"+xxx.getContentType());
        FileUtils.copyInputStreamToFile(xxx.getInputStream(),new File(dir+filename));
     hpjy.setImage(server+filename);
     hpjyBiz.updateByPrimaryKeySelective(hpjy);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "redirect:list";
    }


    //查
    @RequestMapping("/list")
    public  String list(hpjy hpjy, HttpServletRequest request){
        PageBean pageBean =new PageBean();
        pageBean.setRequest(request);
        List<hpjy> hpjies = hpjyBiz.listPager(hpjy, pageBean);
        request.setAttribute("lst",hpjies);
        request.setAttribute("pageBean",pageBean);
        return "hpjy/list";
    }
    //数据回显
    @RequestMapping("/presave")
    public String presave(hpjy hpjy,HttpServletRequest request){
        if(hpjy != null && hpjy.getId() !=null && hpjy.getId() !=0){
            hpjy h = hpjyBiz.selectByPrimaryKey(hpjy.getId());
            request.setAttribute("h",h);
        }
         return "hpjy/edit";
    }
}

编写upload.jsp

<%--
  Created by IntelliJ IDEA.
  User: 30340
  Date: 2023/9/9
  Time: 14:05
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>枪械logo上传</title>
</head>
<body>
<form action="${ctx}/hpjy/upload" method="post" enctype="multipart/form-data">
    <label>枪械编号:</label><input type="text" name="id" readonly="readonly" value="${param.id}"/><br/>
    <label>枪械图片:</label><input type="file" name="xxx"/><br/>
    <input type="submit" value="上传图片"/>
</form>
</body>
</html>

建立一个储存图片的文件夹

 

 编写PageController来处理页面跳转

package com.xy.web;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;

/**
 * @author bing人
 * @site
 * @company xy集团
 * @create 2023-09-07 14:53
 */
//专门用来处理页面跳转
@Controller
public class PageController {
    @RequestMapping("/page/{page}")
    public  String toPage(@PathVariable("page") String page){
        return page;
    }

    @RequestMapping("/page/{Dir}/{page}")
    public  String toDirPage(@PathVariable("Dir") String dir,
                             @PathVariable("page") String page){
        return dir + "/" + page;
    }


    }

编写工具类PropertiesUtil

package com.xy.utils;

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

public class PropertiesUtil {
	public static String getValue(String key) throws IOException {
		Properties p = new Properties();
		InputStream in = PropertiesUtil.class.getResourceAsStream("/resource.properties");
		p.load(in);
		return p.getProperty(key);
	}
	
}

编写resource.properties类

编写list.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>
<%@ taglib uri="http://jsp.veryedu.cn" prefix="z"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <link
            href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.css"
            rel="stylesheet">
    <script
            src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.js"></script>
    <title>博客列表</title>
    <style type="text/css">
        .page-item input {
            padding: 0;
            width: 40px;
            height: 100%;
            text-align: center;
            margin: 0 6px;
        }

        .page-item input, .page-item b {
            line-height: 38px;
            float: left;
            font-weight: 400;
        }

        .page-item.go-input {
            margin: 0 10px;
        }
    </style>
</head>
<body>
<form class="form-inline"
      action="${pageContext.request.contextPath }/hpjy/list" method="get">
    <div class="form-group mb-2">
        <input type="text" class="form-control-plaintext" name="name"
               placeholder="请输入枪械名称">
        <!-- 			<input name="rows" value="20" type="hidden"> -->
        <!-- 不想分页 -->
        <%--<input name="pagination" value="false" type="hidden">--%>
    </div>
    <button type="submit" class="btn btn-primary mb-2">查询</button>
    <a class="btn btn-primary mb-2" href="${pageContext.request.contextPath }/hpjy/presave">新增</a>
</form>

<table class="table table-striped bg-success">
    <thead>
    <tr>
        <th scope="col">枪械编号</th>
        <th scope="col">枪械名称</th>
        <th scope="col">枪械属性</th>
        <th scope="col">图片logo</th>
        <th scope="col">操作</th>
    </tr>
    </thead>
    <tbody>
    <c:forEach  var="b" items="${lst }">
        <tr>
            <td>${b.id }</td>
            <td>${b.name }</td>
            <td>${b.type }</td>
            <td>
              <img src="${b.image}" style="height: 100px;width: 60px;">
            </td>
            <td>
                <a href="${pageContext.request.contextPath }/hpjy/presave?id=${b.id}">修改</a>
                <a href="${pageContext.request.contextPath }/hpjy/del?id=${b.id}">删除</a>
                <a href="${pageContext.request.contextPath }/page/hpjy/upload?id=${b.id}">图片上传</a>
            </td>
        </tr>
    </c:forEach>
    </tbody>
</table>
<!-- 这一行代码就相当于前面分页需求前端的几十行了 -->
<z:page pageBean="${pageBean }"></z:page>
${pageBean }
</body>
</html>

 测试结果

三.文件下载

编写hpjyController类

package com.xy.web;

import com.xy.biz.hpjyBiz;
import com.xy.model.hpjy;
import com.xy.utils.PageBean;
import com.xy.utils.PropertiesUtil;
import org.apache.commons.io.FileUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;
import java.util.List;

/**
 * @author bing人
 * @site
 * @company xy集团
 * @create 2023-09-08 19:13
 */
@Controller
@RequestMapping("/hpjy")
public class hpjyController {
    @Autowired
    private hpjyBiz hpjyBiz;
    //增
    @RequestMapping("/add")
    public  String add(hpjy hpjy){
        int i = hpjyBiz.insertSelective(hpjy);
        return  "redirect:list";
    }
    //删
    @RequestMapping("/del")
    public  String del(hpjy hpjy){
        hpjyBiz.deleteByPrimaryKey(hpjy.getId());
        return "redirect:list";
    }
    //改
    @RequestMapping("/edit")
    public String  edit(hpjy hpjy){
        hpjyBiz.updateByPrimaryKeySelective(hpjy);
        return "redirect:list";
    }

    //文件上传
    @RequestMapping("/upload")
    public String upload(hpjy hpjy,MultipartFile xxx){
        try {
        //后端可以直接利用MultipartFile类,接收前端传递到后台的文件
        //将文件转成流,然后写入服务器(某一个硬盘)
        //上传的图片真实存放地址
        String dir= PropertiesUtil.getValue("dir");
        //网络访问地址
        String server= PropertiesUtil.getValue("server");
        String filename = xxx.getOriginalFilename();
        System.out.println("文件名:"+filename);
        System.out.println("文件类别:"+xxx.getContentType());
        FileUtils.copyInputStreamToFile(xxx.getInputStream(),new File(dir+filename));
     hpjy.setImage(server+filename);
     hpjyBiz.updateByPrimaryKeySelective(hpjy);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "redirect:list";
    }


    //查
    @RequestMapping("/list")
    public  String list(hpjy hpjy, HttpServletRequest request){
        PageBean pageBean =new PageBean();
        pageBean.setRequest(request);
        List<hpjy> hpjies = hpjyBiz.listPager(hpjy, pageBean);
        request.setAttribute("lst",hpjies);
        request.setAttribute("pageBean",pageBean);
        return "hpjy/list";
    }
    //数据回显
    @RequestMapping("/presave")
    public String presave(hpjy hpjy,HttpServletRequest request){
        if(hpjy != null && hpjy.getId() !=null && hpjy.getId() !=0){
            hpjy h = hpjyBiz.selectByPrimaryKey(hpjy.getId());
            request.setAttribute("h",h);
        }
         return "hpjy/edit";
    }

    @RequestMapping(value="/download")
    public ResponseEntity<byte[]> download(hpjy hpjy, HttpServletRequest req){

        try {
            //先根据文件id查询对应图片信息
            hpjy h = this.hpjyBiz.selectByPrimaryKey(hpjy.getId());
            String diskPath = PropertiesUtil.getValue("dir");
            String reqPath = PropertiesUtil.getValue("server");
            String realPath = h.getImage().replace(reqPath,diskPath);
            String fileName = realPath.substring(realPath.lastIndexOf("/")+1);
            //下载关键代码
            File file=new File(realPath);
            HttpHeaders headers = new HttpHeaders();//http头信息
            String downloadFileName = new String(fileName.getBytes("UTF-8"),"iso-8859-1");//设置编码
            headers.setContentDispositionFormData("attachment", downloadFileName);
            headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
            //MediaType:互联网媒介类型  contentType:具体请求中的媒体类型信息
            return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.OK);
        }catch (Exception e){
            e.printStackTrace();
        }
        return null;
    }
}

编写list.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>
<%@ taglib uri="http://jsp.veryedu.cn" prefix="z"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <link
            href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.css"
            rel="stylesheet">
    <script
            src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.js"></script>
    <title>博客列表</title>
    <style type="text/css">
        .page-item input {
            padding: 0;
            width: 40px;
            height: 100%;
            text-align: center;
            margin: 0 6px;
        }

        .page-item input, .page-item b {
            line-height: 38px;
            float: left;
            font-weight: 400;
        }

        .page-item.go-input {
            margin: 0 10px;
        }
    </style>
</head>
<body>
<form class="form-inline"
      action="${pageContext.request.contextPath }/hpjy/list" method="get">
    <div class="form-group mb-2">
        <input type="text" class="form-control-plaintext" name="name"
               placeholder="请输入枪械名称">
        <!-- 			<input name="rows" value="20" type="hidden"> -->
        <!-- 不想分页 -->
        <%--<input name="pagination" value="false" type="hidden">--%>
    </div>
    <button type="submit" class="btn btn-primary mb-2">查询</button>
    <a class="btn btn-primary mb-2" href="${pageContext.request.contextPath }/hpjy/presave">新增</a>
</form>

<table class="table table-striped bg-success">
    <thead>
    <tr>
        <th scope="col">枪械编号</th>
        <th scope="col">枪械名称</th>
        <th scope="col">枪械属性</th>
        <th scope="col">图片logo</th>
        <th scope="col">操作</th>
    </tr>
    </thead>
    <tbody>
    <c:forEach  var="b" items="${lst }">
        <tr>
            <td>${b.id }</td>
            <td>${b.name }</td>
            <td>${b.type }</td>
            <td>
              <img src="${b.image}" style="height: 100px;width: 60px;">
            </td>
            <td>
                <a href="${pageContext.request.contextPath }/hpjy/presave?id=${b.id}">修改</a>
                <a href="${pageContext.request.contextPath }/hpjy/del?id=${b.id}">删除</a>
                <a href="${pageContext.request.contextPath }/page/hpjy/upload?id=${b.id}">图片上传</a>
                <a href="${pageContext.request.contextPath }/hpjy/download?id=${b.id}">图片下载</a>
            </td>
        </tr>
    </c:forEach>
    </tbody>
</table>
<!-- 这一行代码就相当于前面分页需求前端的几十行了 -->
<z:page pageBean="${pageBean }"></z:page>
${pageBean }
</body>
</html>

 测试结果

四.jrebel&多文件上传

下载JRebel插件

下载好后重启idear

下载好后要先打开代理ReverseProxy_windows_amd64.exe(顺序不能错)

jrebel项目启动

注册jrebel

测试结果

(出来了这一行就代表启动成功了)

设置离线状态

(没有离线状态)

离线状态(出先了这两个就是离线状态了)

 多文件上传

编写hpjyController类

package com.xy.web;

import com.xy.biz.hpjyBiz;
import com.xy.model.hpjy;
import com.xy.utils.PageBean;
import com.xy.utils.PropertiesUtil;
import org.apache.commons.io.FileUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;
import java.util.List;

/**
 * @author bing人
 * @site
 * @company xy集团
 * @create 2023-09-08 19:13
 */
@Controller
@RequestMapping("/hpjy")
public class hpjyController {
    @Autowired
    private hpjyBiz hpjyBiz;
    //增
    @RequestMapping("/add")
    public  String add(hpjy hpjy){
        int i = hpjyBiz.insertSelective(hpjy);
        return  "redirect:list";
    }
    //删
    @RequestMapping("/del")
    public  String del(hpjy hpjy){
        hpjyBiz.deleteByPrimaryKey(hpjy.getId());
        return "redirect:list";
    }
    //改
    @RequestMapping("/edit")
    public String  edit(hpjy hpjy){
        hpjyBiz.updateByPrimaryKeySelective(hpjy);
        return "redirect:list";
    }

    //文件上传
    @RequestMapping("/upload")
    public String upload(hpjy hpjy,MultipartFile xxx){
        try {
        //后端可以直接利用MultipartFile类,接收前端传递到后台的文件
        //将文件转成流,然后写入服务器(某一个硬盘)
        //上传的图片真实存放地址
        String dir= PropertiesUtil.getValue("dir");
        //网络访问地址
        String server= PropertiesUtil.getValue("server");
        String filename = xxx.getOriginalFilename();
        System.out.println("文件名:"+filename);
        System.out.println("文件类别:"+xxx.getContentType());
        FileUtils.copyInputStreamToFile(xxx.getInputStream(),new File(dir+filename));
     hpjy.setImage(server+filename);
     hpjyBiz.updateByPrimaryKeySelective(hpjy);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "redirect:list";
    }

    //多文件上传
    @RequestMapping("/uploads")
    public String uploads(HttpServletRequest req, hpjy hpjy, MultipartFile[] files){
        try {
            StringBuffer sb = new StringBuffer();
            for (MultipartFile cfile : files) {
                //思路:
                //1) 将上传图片保存到服务器中的指定位置
                String dir = PropertiesUtil.getValue("dir");
                String server = PropertiesUtil.getValue("server");
                String filename = cfile.getOriginalFilename();
                FileUtils.copyInputStreamToFile(cfile.getInputStream(),new File(dir+filename));
                sb.append(filename).append(",");
            }
            System.out.println(sb.toString());

        } catch (Exception e) {
            e.printStackTrace();
        }
        return "redirect:list";
    }

    //查
    @RequestMapping("/list")
    public  String list(hpjy hpjy, HttpServletRequest request){
        PageBean pageBean =new PageBean();
        pageBean.setRequest(request);
        List<hpjy> hpjies = hpjyBiz.listPager(hpjy, pageBean);
        request.setAttribute("lst",hpjies);
        request.setAttribute("pageBean",pageBean);
        System.out.println("jrebel active");
        return "hpjy/list";
    }
    //数据回显
    @RequestMapping("/presave")
    public String presave(hpjy hpjy,HttpServletRequest request){
        if(hpjy != null && hpjy.getId() !=null && hpjy.getId() !=0){
            hpjy h = hpjyBiz.selectByPrimaryKey(hpjy.getId());
            request.setAttribute("h",h);
        }
         return "hpjy/edit";
    }

    @RequestMapping(value="/download")
    public ResponseEntity<byte[]> download(hpjy hpjy, HttpServletRequest req){

        try {
            //先根据文件id查询对应图片信息
            hpjy h = this.hpjyBiz.selectByPrimaryKey(hpjy.getId());
            String diskPath = PropertiesUtil.getValue("dir");
            String reqPath = PropertiesUtil.getValue("server");
            String realPath = h.getImage().replace(reqPath,diskPath);
            String fileName = realPath.substring(realPath.lastIndexOf("/")+1);
            //下载关键代码
            File file=new File(realPath);
            HttpHeaders headers = new HttpHeaders();//http头信息
            String downloadFileName = new String(fileName.getBytes("UTF-8"),"iso-8859-1");//设置编码
            headers.setContentDispositionFormData("attachment", downloadFileName);
            headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
            //MediaType:互联网媒介类型  contentType:具体请求中的媒体类型信息
            return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.OK);
        }catch (Exception e){
            e.printStackTrace();
        }
        return null;
    }
}

编写upload.jsp

<%--
  Created by IntelliJ IDEA.
  User: 30340
  Date: 2023/9/9
  Time: 14:05
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>枪械logo上传</title>
</head>
<body>
<form action="${ctx}/hpjy/upload" method="post" enctype="multipart/form-data">
    <label>枪械编号:</label><input type="text" name="id" readonly="readonly" value="${param.id}"/><br/>
    <label>枪械图片:</label><input type="file" name="xxx"/><br/>
    <input type="submit" value="上传图片"/>
</form>

<form method="post" action="${ctx}/hpjy/uploads" enctype="multipart/form-data">
    <input type="file" name="files" multiple>
    <button type="submit">上传</button>
</form>
</body>
</html>

测试结果

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/994837.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Redis集群3.2.11离线安装详细版本(使用Ruby)

1.安装软件准备 1.Redis版本下载 Index of /releases/http://download.redis.io/releases/ 1.2gcc环境准备 GCC(GNU Compiler Collection,GNU编译器套件)是一套用于编译程序代码的开源编译器工具集。它的主要用途是将高级编程语言(如C、C++、Fortran等)编写的源代码转换…

MyBatis之分页查询:MyBatis PageHelper

MyBatis之分页查询&#xff1a;MyBatis PageHelper 简介 MyBatis&#xff0c;作为目前流行的ORM框架&#xff0c;大大方便了日常开发。而对于分页查询&#xff0c;虽然可以通过SQL的limit语句实现&#xff0c;但是比较繁琐。而MyBatis PageHelper的出现&#xff0c;则解决了这…

如何在postman中实现自动化测试?

这里简单演示在postman中怎样实现自动化测试&#xff08;不涉及到用户登录的token认证&#xff09; 导入测试用例文件&#xff0c;测试web接口 postman使用流程&#xff1a;创建collection文件夹&#xff0c;在该文件夹中创建post&#xff0c;get请求&#xff1b;其中传入的参…

Keil MDK-ARM 软件的部分常用快捷键如下

F7&#xff1a;编译。F8: 下载。F9&#xff1a;添加/取消断点。Ctrl F5&#xff1a;调试。Tab&#xff1a;将选中的内容整体右移。Shift Tab&#xff1a;将选中的内容整体左移。Home&#xff1a;将光标移至行首。End&#xff1a;将光标移至行末。Ctrl >&#xff1a;光标…

【SpringMVC】注解、参数传递、返回值和页面跳转的关键步骤

目录 引言 一、常用注解 1.1.RequestMapping 1.2.RequestParam 1.3.RequestBody 1.4.RequestHeader 1.5.PathVariable 二、参数传递 2.1.基础类型String 2.2.复杂类型 2.3.RequestParam 2.4.PathVariable 2.5.RequestBody 2.6.RequestHeader 三、返回值 3.1.vo…

大数据-玩转数据-Flink状态编程(中)

一、键控状态 键控状态是根据输入数据流中定义的键&#xff08;key&#xff09;来维护和访问的。 Flink为每个键值维护一个状态实例&#xff0c;并将具有相同键的所有数据&#xff0c;都分区到同一个算子任务中&#xff0c;这个任务会维护和处理这个key对应的状态。当任务处理…

Jmeter压测监控体系搭建Docker+Influxdb+Grafana

章节目录&#xff1a; 一、背景介绍1.1 概述1.2 拓扑图 二、云服务器设置三、Docker3.1 概述3.2 搭建流程3.3 安装验证3.4 配置docker镜像加速3.5 取消sudo运行(可选操作) 四、InfluxDB4.1 镜像拉取4.2 运行数据库4.3 创建存储 jmeter 数据的库 五、Grafana5.1 镜像拉取5.2 关联…

Day_13 > 指针进阶(2)

目录 1.函数指针数组 2.指向函数指针数组的指针 3.回调函数 qsort()函数 代码示例 void* 4.结束 今天我们在进阶指针的基础上&#xff0c;学习进阶指针的第二部分 1.函数指针数组 首先我们回顾一下指针数组 char* arr[5]://字符指针数组 - 数组 - 存放的是字符指针 in…

mysql的索引结构

索引概述 索引&#xff08; index &#xff09;是帮助 MySQL 高效获取数据的数据结构 ( 有序 ) 。在数据之外&#xff0c;数据库系统还维护着满足特定查找算法的数据结构&#xff0c;这些数据结构以某种方式引用&#xff08;指向&#xff09;数据&#xff0c; 这样就可以在这些…

Spring与OAuth2:实现第三方认证和授权的最佳实践

&#x1f337;&#x1f341; 博主猫头虎&#xff08;&#x1f405;&#x1f43e;&#xff09;带您 Go to New World✨&#x1f341; &#x1f984; 博客首页——&#x1f405;&#x1f43e;猫头虎的博客&#x1f390; &#x1f433; 《面试题大全专栏》 &#x1f995; 文章图文…

python基本类型

数值类型 整型 int_val 1145143 print(int_val)python中的整型是大数类型。 一些其他函数 val 30 vlen val.bit_length() # 转换为二进制的长度 v_8 oct(val) print(v_8) # 将十进制转为八进制 v_16 hex(val) # 将十进制转为十六进制 v_2 bin(val) # 将十进制转为二进…

二、环境配置,项目运行 —— TinyWebServer

环境配置&#xff0c;项目运行 —— TinyWebServer 一、前言 上一期已经介绍过这个项目的基本结构&#xff0c;不懂得可以点开主页查找。 写代码前。一般的步骤就是&#xff0c;先把别人的代码下载下来运行。一、一方面看看最终效果是否是自己想要的&#xff0c;二、掌握项目…

redis分布式锁详解

一、基本分布式锁实现 1、案例&#xff08;扣减库存&#xff09; RequestMapping("reduceStock")public String reduceStock() {String lockKey "lock:product_101";String clientId UUID.randomUUID().toString();// 过期时间要和设置key成为一条命令…

linux下shell脚本实现wordpress搭建

wordpress_auto_install.sh #!/bin/bashuser$(whoami)function wordpress_auto_install () { if [ $user "root" ];thenecho "前提&#xff1a;调整系统配置&#xff0c;如关闭selinux、firewall等&#xff01;"sed -i s/SELINUXenforcing/SELINUXdis…

光线投射之伪3d

光线投射是一种在 2D 地图中创建 3D 透视的渲染技术。当计算机速度较慢时&#xff0c;不可能实时运行真正的 3D 引擎&#xff0c;光线投射是第一个解决方案。光线投射可以非常快&#xff0c;因为只需对屏幕的每条垂直线进行计算。 光线投射的基本思想如下&#xff1a;地图是一…

rtthread下基于spi device架构MCP25625驱动

1.CAN驱动架构 由于采用了RTT的spi device架构&#xff0c;不能再随心所遇的编写CAN驱动 了&#xff0c;之前内核虽然采用了RTT内核&#xff0c;但是驱动并没有严格严格按RTT推荐的架构来做&#xff0c;这次不同了&#xff0c;上次是因为4个MCP25625挂在了4路独立的SPI总线上&…

【图论】Floyd

算法提高课笔记&#xff09; 文章目录 例题牛的旅行题意思路代码 排序题意思路代码 观光之旅题意思路代码 例题 牛的旅行 原题链接 农民John的农场里有很多牧区&#xff0c;有的路径连接一些特定的牧区。 一片所有连通的牧区称为一个牧场。 但是就目前而言&#xff0c;你…

程序依赖相关知识点(PDG,SDG)

什么叫可达性 变量v的定义d&#xff1a;对变量v的赋值语句称为变量v的定义 变量v的使用&#xff1a;在某个表达式中引用变量v的值 当变量v被再次赋值时&#xff0c;上一次赋值对变量v的定义d就被kill掉了 如果定义d到点p之间存在一条路径&#xff0c;且在路径中定义d没有被…

Java 多线程系列Ⅵ(并发编程的五大组件)

JUC 组件 前言一、Callable二、ReentrantLock三、Atomic 原子类四、线程池五、Semaphore六、CountDownLatch 前言 JUC&#xff08;Java.util.concurrent&#xff09;是 Java 标准库中的一个包&#xff0c;它提供了一组并发编程工具&#xff0c;本篇文章就介绍几组常见的 JUC 组…

汇川PLC学习Day2:编写检测IO端口状态程序

汇川PLC学习Day2&#xff1a;编写检测IO端口状态程序 一、 新增IO和模拟量模块 IO组态界面 模块参数设置 程序编写 想法是将DA模块的通道0接到AD模块的通道0&#xff0c;将DA模块的通道1接到AD模块的通道1&#xff0c;PLC本身发模拟量给自己PLC收模拟量转换&#xff0c;…