摘要: lodash Lodash 通过降低 array、number、objects、string 等等的使用难度从而让 JavaScript 变得更简单。 Lodash 的模块化方法 非常适用于: 遍历 array、object 和 string 对值进行操作和检测 创建符合功能的函数 官网 https 阅读全文
posted @ 2024-04-25 17:20 一个小笨蛋 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 修改oracle密码有效期 虚拟机为了方便,修改为永不过期 1.查看用户和profile,testuser为要查找的用户名,按实际情况来修改。 cmd>sqlplus / as sysdba # linux 环境下使用su oracle后操作 select username,profile from 阅读全文
posted @ 2024-04-24 14:03 一个小笨蛋 阅读(66) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-04-19 10:16 一个小笨蛋 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 附件下载链接 VLA工具请参照下面的链接下载: https://support.sw.siemens.com/en-US/product/282219420/download/PL20211019666440448 其中包含使用说明 使用 a -jar D:\soft\tc_vla_tool\tc_ 阅读全文
posted @ 2024-04-10 16:55 一个小笨蛋 阅读(29) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-04-10 16:22 一个小笨蛋 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 设置存储桶Anonymous 配置nginx 并reload location /images/ { proxy_pass http://127.0.0.1:9000/; } 测试 https://paylove.online/images/存储桶/xxx.png IAM 参考 https://do 阅读全文
posted @ 2024-04-01 09:45 一个小笨蛋 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 一、安装minio # 安装方式 or 直接下二进制执行文件 chomod +x minio 运行 sudo wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio-20240326221045.0.0-1.x86_ 阅读全文
posted @ 2024-03-31 16:38 一个小笨蛋 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 一、修改文档注释的字体颜色 选择File--Settings--Color Scheme--Language Defaults,可以修改单行注释的字体颜色,多行注释的字体颜色以及文档注释的颜色,我一般习惯将文档注释和多行注释设置成绿色 008017,单行注释设置成紫色 7402FF 这样看注释会方便 阅读全文
posted @ 2024-03-30 10:30 一个小笨蛋 阅读(2207) 评论(0) 推荐(0) 编辑
摘要: 定义注解 AutoFill.java /** * 自定义注解,实现自动填填充功能 */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface AutoFill { OperationType 阅读全文
posted @ 2024-03-28 13:31 一个小笨蛋 阅读(27) 评论(0) 推荐(0) 编辑
摘要: @Aspect驱动 定义一个切面类Aspect 即在声明的类,增加@Component @Aspect两个注解,SpringBoot 中要引入spring-boot-starter-aop依赖包 定义切点 定义切点,并定义切点在哪些地方执行,采用PointCut注解完成,如@Pointcut(pub 阅读全文
posted @ 2024-03-26 13:55 一个小笨蛋 阅读(6) 评论(0) 推荐(0) 编辑