摘要: 方式一:使用 Apache PDFBox 库 1. 添加 PDFBox 依赖 首先,在 pom.xml 文件中添加 PDFBox 的依赖: <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId 阅读全文
posted @ 2024-10-24 23:05 KLAPT 阅读(22) 评论(0) 推荐(0) 编辑
摘要: EnumMap是一种基于枚举类型的Map实现,它具有非常高的性能和可读性。 EnumMap的定义如下所示: public class EnumMap<K extends Enum<K>,V> extends AbstractMap<K,V> implements java.io.Serializab 阅读全文
posted @ 2024-10-23 21:52 KLAPT 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、引入Jar包依赖 前提是你将Jar包打入本地仓库,Jar包地址见后文。 <dependency> <groupId>pers.liuchengyin</groupId> <artifactId>logback-desensitization</artifactId> <version>1.0.0 阅读全文
posted @ 2024-10-17 16:05 KLAPT 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 一、通过重定向来清空文件内容 -> 通过shell重定向null到指定文件即可 > access.log -> 重定向 : 或 true 到指定文件 : > access.log true > access.log 二、使用cat/cp/dd 使用工具和/dev/null设备来清空文件内容 -> 可 阅读全文
posted @ 2024-09-09 16:20 KLAPT 阅读(1626) 评论(0) 推荐(0) 编辑
摘要: 1.查找某个节点下面子孙节点 select * from table start with id=1 connect by prior id=pid 2、查找节点的祖先节点 select * from table start with id=5 connect by prior pid=id 阅读全文
posted @ 2024-09-04 22:02 KLAPT 阅读(27) 评论(0) 推荐(0) 编辑
摘要: listagg函数 【返回结果为varchar2格式的数据,即拼接后的字符串最大可以保存4000字节的数据】 SELECTLISTAGG(student name,',') WITHIN GROUP(ORDER BY student name) listagg FROMstudent info t; 阅读全文
posted @ 2024-09-02 22:38 KLAPT 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 一、单行函数 单行函数是指每一行数据执行操作后都会返回一行数据 单行函数可以进行嵌套,嵌套函数的顺序是由内到外 单行函数分为5类:字符、数值、日期、转换、通用函数 1)大小写控制函数 lower('str'):大写转小写 select lower('ORACLE') from dual;--orac 阅读全文
posted @ 2024-09-02 22:23 KLAPT 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1,使用关键字:"transient" transient关键字 就是当对象存储时,它的值不需要维持,不需要序列化这个字段 使用方式 private transient String userName 2,使用关键字"static" 和transient一样,使用这个修饰的变量也不会被序列化,所以在 阅读全文
posted @ 2024-08-30 09:47 KLAPT 阅读(355) 评论(0) 推荐(1) 编辑
摘要: created:html加载完成之前,执行。执行顺序:父组件-子组件 mounted:html加载完成后执行。执行顺序:子组件-父组件 methods:事件方法执行 watch:去监听一个值的变化,然后执行相对应的函数 computed:computed是计算属性,也就是依赖其它的属性计算所得出最后 阅读全文
posted @ 2024-08-08 23:27 KLAPT 阅读(95) 评论(0) 推荐(0) 编辑
摘要: Maven仓库地址: https://mvnrepository.com/ https://nowjava.com/jar/detail/m01015161/jasypt-spring-boot-starter-1.7.jar.html npm仓库:https://www.npmjs.com/pac 阅读全文
posted @ 2024-08-07 10:17 KLAPT 阅读(10) 评论(0) 推荐(0) 编辑