-
Spring 组件的注册时机
相关组件 被@Component、@Controller、@Service、@Repository、@Bean标注的组件。 相关后置处理器 主要是配置类后置处理
-
Spring @EventListener 加载流程
注解 /** * @see EventListenerMethodProcessor */ @Target({ElementType.METHOD, Ele
-
Spring 注册内置后置处理器流程
版本 spring-context 5.3.13 注册流程 AnnotationConfigApplicationContext构造函数中完成了Spring内置
-
Spring 依赖注入原理
版本 spring-context 5.2.6.RELEASE 依赖注入 AutowiredAnnotationBeanPostProcessor处理@Auto
-
Spring 创建 IOC 容器步骤
代码 AnnotationConfigApplicationContext applicationContext = new AnnotationConfigA
-
Java Log4j2 高危漏洞复现及解决办法
影响范围 影响< 2.15.0的所有2.x版本。且JDK版本在Oracle JDK 11.0.1、8u191、7u201、6u211及之前的版本。 Git
-
Spring Boot 整合 Log4j2 不起作用
现象 pom文件中引入了log4j2。 <dependency> <groupId>org.springframework.bo
2021-12-12, Views: 2907 , Topics: Spring Boot Log4j2
-
使用 ffmpeg 转换 m4a 为 mp3
说明 需下载ffmpeg,命令行中的路径需修改为ffmpeg保存路径。 单独转换 C:\Software\ffmpeg\bin\ffmpeg.exe -i "a
2021-12-12, Views: 10624 , Topics: ffmpeg
-
IDEA JavaFX Can't build artifact - fx:deploy is not available in this JDK
现象 在IDEA的Project Structure中添加Artifacts,选择JavaFX Application下的From Module...,但在页面
-
Git OpenSSL errno 10054
具体错误 OpenSSL SSL_read: Connection was reset, errno 10054 方法一 git config --global
-
Java 删除非空文件夹
Files.walkFileTree SimpleFileVisitor相关的回调方法如下: preVisitDirectory:进入文件夹前的回调方法。 vi
2021-12-09, Views: 2091 , Topics: Java
-
Java 多级目录的文件夹拷贝
代码 public class FilesCopyDemo { public static void main(String[] args) thro
2021-12-08, Views: 1424 , Topics: Java
-
Java 遍历文件夹
Files.walkFileTree preVisitDirectory:进入文件夹前的回调方法。 visitFile:遍历到具体文件的回调方法。 postVi
2021-12-07, Views: 1737 , Topics: Java
-
为什么 ArrayList 父类中已经实现了 List 接口,自身也实现了 List 接口
引用 I've asked Josh Bloch, and he informs me that it was a mistake. He used to t
2021-12-03, Views: 1546 , Topics: Java
-
Angular 跨域问题
需求 在手机或平板上连接开发环境进行测试。(如果在电脑端,直接可以调整Chrome的参数支持跨域,具体可参考之前文章:https://www.zhangbj.c
-
GoJS 右键菜单隐藏和显示事件监听
需求 当右键菜单显示时将元素颜色改为绿色,当右键菜单隐藏时将元素颜色改为红色。 contextMenuTool contextMenuTool是Diagram中
2021-12-01, Views: 2928 , Topics: GoJS
-
GoJS 给右键菜单中的按钮添加内边距
方法 $("ContextMenuButton", { "ButtonBorder.fill": "white", "_
2021-11-29, Views: 2338 , Topics: GoJS
-
GoJS 给右键菜单中的按钮添加分割线
方法 $(go.Shape, "LineH", { strokeWidth: 0.5, height: 0.5, width: 100, stretch: go
2021-11-28, Views: 2246 , Topics: GoJS
-
GoJS 给右键菜单添加外边框
方法 contextMenu: $("ContextMenu", "Auto", { background: "white",
2021-11-26, Views: 1905 , Topics: GoJS
-
GoJS 加载 SVG 矢量图并分块填充颜色
原始图像 代码 $(go.Shape, { geometryString: `M934 271c0-90-73-163-163-163H
2021-11-25, Views: 2971 , Topics: GoJS