摘要: <?xml version="1.0" encoding="UTF-8"?> <!-- 日志级别从低到高分为TRACE < DEBUG < INFO < WARN < ERROR < FATAL,比如: 如果设置为WARN,则低于WARN的信息都不会输出 --> <!-- scan:当此属性设置为t 阅读全文
posted @ 2022-08-04 15:56 季白二十四 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 请求的controller: @GetMapping("/deposits/downloadexcel") public void downloadExcel (HttpServletRequest request, HttpServletResponse response){ try { //命名 阅读全文
posted @ 2021-12-09 14:40 季白二十四 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 本链接包含Java,MySQL,Redis等一系列基础到高级的知识 Nyima's Blog (gitee.io) 阅读全文
posted @ 2021-07-28 18:28 季白二十四 阅读(24) 评论(0) 推荐(0) 编辑
摘要: MySQL中变量的定义和变量的赋值使用 MySQL变量分为系统变量和自定义变量 一:系统变量:变量由系统产生,不是用户定义,属于服务器层面。 语法: 1.查看所有的系统变量 show global|session Variables 2.查看满足条件的部分系统变量 show global|sessi 阅读全文
posted @ 2021-07-01 16:36 季白二十四 阅读(2734) 评论(0) 推荐(0) 编辑
摘要: servimport org.apache.dolphinscheduler.api.service.BaseService; import org.apache.dolphinscheduler.api.service.FileService; import org.apache.dolphins 阅读全文
posted @ 2021-06-29 11:30 季白二十四 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 工具类 package io.renren.utils; import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.text.DecimalFormat; import j 阅读全文
posted @ 2021-06-29 11:24 季白二十四 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 实体类 @Data public class Student { @ExcelProperty(value = "学生姓名") private String name; @ExcelProperty(value = "年龄") private Integer age; @ExcelProperty( 阅读全文
posted @ 2021-06-29 10:55 季白二十四 阅读(2054) 评论(0) 推荐(0) 编辑
摘要: /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this 阅读全文
posted @ 2021-06-29 10:44 季白二十四 阅读(148) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.excel.EasyExcel; import com.alibaba.excel.context.AnalysisContext; import com.alibaba.excel.event.AnalysisEventListener; import com 阅读全文
posted @ 2021-06-28 17:51 季白二十四 阅读(215) 评论(0) 推荐(0) 编辑
摘要: MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。它提供了QueryWrapper自定义查询对象,可以无需手写sql,进行条件查询。在其中的and()和or()方法,可以进行条件的连接,写几个例子介绍一下 阅读全文
posted @ 2021-06-18 21:20 季白二十四 阅读(8587) 评论(0) 推荐(1) 编辑