Title

04 2022 档案

摘要:因为swagger版本与knife4j不兼容 <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>knife4j-spring-boot-starter</artifactId> <version>3.0.3</versio 阅读全文
posted @ 2022-04-19 18:26 手中的小黄鸭 阅读(5981) 评论(0) 推荐(1)
摘要:ApplicationContext和BeanFactory有什么区别: 一、ApplicationContext继承了BeanFactory,但是前者还会有自己额外的接口 EnvironmentCapable 获取环境变量的功能(操作系统、jvm等环境变量) MessageSource 实现国际化 阅读全文
posted @ 2022-04-10 19:58 手中的小黄鸭 阅读(200) 评论(0) 推荐(0)
摘要:**thymeleaf:** ```html xmlns:th="http://www.thymeleaf.org" ``` **security:** ```html xmlns:sec="http://www.thymeleaf.org/extras/spring-security"> ``` 阅读全文
posted @ 2022-04-07 15:59 手中的小黄鸭 阅读(34) 评论(0) 推荐(0)
摘要:ArrayList和LinkedList区别 他们底层数据结构不同,ArrayList底层基于数组实现的,LinkedList底层基于链表实现的。 适用场景不同,ArrayList适用于查找,因为他是靠查找索引,LinkedList适用于添加、删除,他是靠指针,更改只需要改变当前的 针头和针尾。 都 阅读全文
posted @ 2022-04-06 21:09 手中的小黄鸭 阅读(32) 评论(0) 推荐(0)