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