随笔分类 -  常用工具

依赖、注解、配置文件
摘要:工具——>历史日志 阅读全文
posted @ 2022-11-26 15:07 It小飞呀 阅读(1492) 评论(0) 推荐(0)
摘要:## 注解说明- @Autowired:自动装配通过类型,名字- @nullable:字段标记了这个注解,说明这个字段可以为null。- @Resource:自动装配通过名字,类型- @Component:组件,放在类上,说明这个类被,Spring管理了,就是bean。【@Component、@Re 阅读全文
posted @ 2022-10-31 09:45 It小飞呀 阅读(35) 评论(0) 推荐(0)
摘要:<!--导入junit包--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> <!--导入mysql的包--> <dependenc 阅读全文
posted @ 2022-10-31 09:43 It小飞呀 阅读(36) 评论(0) 推荐(0)