上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: ### 定义转换器 ``` package com.haier.hibp.stock.util; import com.alibaba.excel.converters.Converter; import com.alibaba.excel.converters.WriteConverterCont 阅读全文
posted @ 2023-08-09 17:18 品书读茶 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 1、打开我的电脑,在地址栏中输入C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp,回车,进入该文件夹,这是启动项所在文件夹。 2、将需要添加开机启动的文件或者快捷程序拖到该文件夹下即可实现开机启动。 阅读全文
posted @ 2022-10-21 17:08 品书读茶 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 1、配置文件写法 spring: profiles: dev quartz: auto-startup: true spring: profiles: local quartz: auto-startup: false 2、虚拟机参数配置 -D:spring.profiles.active=dev, 阅读全文
posted @ 2022-05-31 11:01 品书读茶 阅读(29) 评论(0) 推荐(0) 编辑
摘要: hutool 的JSONUtil import cn.hutool.json.JSON; import cn.hutool.json.JSONUtil; import java.util.ArrayList; import java.util.List; public class Main { pu 阅读全文
posted @ 2022-05-18 17:55 品书读茶 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 问题现象 Caused by: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'a': Bean with name 'a' has been inj 阅读全文
posted @ 2022-05-09 14:02 品书读茶 阅读(286) 评论(0) 推荐(0) 编辑
摘要: Client-error:unknown code for readObject at 0x3c (<) 原因之一是classNotFoundRxception :com.caucho.hessian.io.HessianInput 解决方式: implementation 'com.caucho: 阅读全文
posted @ 2021-08-18 13:59 品书读茶 阅读(264) 评论(0) 推荐(0) 编辑
摘要: package com.xxx.platform.util; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.StringRedisTe 阅读全文
posted @ 2021-08-17 15:04 品书读茶 阅读(720) 评论(0) 推荐(0) 编辑
摘要: ###1、创建一张伪序列表 CREATE TABLE sequence ( seq_name VARCHAR (50) NOT NULL,-- 序列名称 current_val INT NOT NULL,-- 当前值 increment_val INT NOT NULL DEFAULT 1,-- 步 阅读全文
posted @ 2021-08-17 10:26 品书读茶 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 自定义注解 打印日志注解 import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang. 阅读全文
posted @ 2021-07-22 17:07 品书读茶 阅读(187) 评论(0) 推荐(0) 编辑
摘要: setSqlSelect SELECT 查询字段 where WHERE 语句,拼接 + WHERE 条件 and AND 语句,拼接 + AND 字段=值 andNew AND 语句,拼接 + AND (字段=值) or OR 语句,拼接 + OR 字段=值 orNew OR 语句,拼接 + OR 阅读全文
posted @ 2021-07-15 15:53 品书读茶 阅读(230) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页