摘要: import javax.crypto.Cipher; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import java.util.Base64; public class AE 阅读全文
posted @ 2024-10-19 09:52 大稳·杨 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 项目启动的要加上配置文件的扫描路径 import com.example.config.ObsProperties; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringAppl 阅读全文
posted @ 2024-10-19 09:51 大稳·杨 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 文章引用:https://www.cnblogs.com/chenggan/p/16008226.html application程序入口也要加上扫描 import org.mybatis.spring.annotation.MapperScan; @MapperScan("com.lexin.ap 阅读全文
posted @ 2024-10-19 09:46 大稳·杨 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1. 报错信息 系统错误,错误信息:org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'defaultTx' is expected to be of type 'org.springframew 阅读全文
posted @ 2024-08-19 10:43 大稳·杨 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1.增加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 2.程序入口初始化Bean im 阅读全文
posted @ 2024-07-23 18:57 大稳·杨 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1. 问题 2. 原因 org.apache.juli.logging.DirectJDKLog:log|Error parsing HTTP request header Note: further occurrences of HTTP header parsing errors will be 阅读全文
posted @ 2024-06-07 14:36 大稳·杨 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 问题1 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jobConfParser' defined in class path resource [com/cxytian 阅读全文
posted @ 2024-04-16 19:36 大稳·杨 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1. 查询所有的分区表 SELECT * FROM DBA_TAB_PARTITIONS ; 2. 创建分区 alter table {TABLE_NAME} add partition SYS_P202403 values less than (TO_DATE('2024-03-01 00:00: 阅读全文
posted @ 2024-04-01 10:07 大稳·杨 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 要实现两个数据库之间的实时同步,需要给Oracle设置参数 ALTER DATABASE ADD SUPPLEMENTAL LOG DATA; -- 执行了12小时,等待数据库中的其它事务都提交以后才执行完成 ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (PRI 阅读全文
posted @ 2024-02-27 17:10 大稳·杨 阅读(526) 评论(1) 推荐(0) 编辑
摘要: 如何在运行主方法的同时异步运行另一个方法,我是用来更新缓存; 1. 工具类 public class ThreadPoolUtils { private static final Logger LOGGER = LoggerFactory.getLogger(ThreadPoolUtils.clas 阅读全文
posted @ 2024-02-07 09:13 大稳·杨 阅读(132) 评论(0) 推荐(0) 编辑