05 2021 档案

摘要:import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.Reten 阅读全文
posted @ 2021-05-24 15:31 齐天大圣打妖怪 阅读(65) 评论(0) 推荐(0)
摘要:什么是注解 注解,就是对某一事物进行添加注释说明,会存放一些信息,这些信息可能对以后某个时段来说是很有用处的。 Java注解又叫java标注,java提供了一套机制,使得我们可以对方法、类、参数、包、域以及变量等添加标准(即附上某些信息)。且在以后某个时段通过反射将标注的信息提取出来以供使用。 自定 阅读全文
posted @ 2021-05-24 14:44 齐天大圣打妖怪 阅读(1568) 评论(0) 推荐(0)
摘要:标题: #+(空格)标题 = 一级标题 字体 hello,word! hello,word! hello,word! hello,word! 引用 箭头+空格 "> " 分割线 " ***" 图片 "![截图]" 超链接 点击条状到 "" 列表 1. 2. "1. " 2 2 表格 名字性比生日 张 阅读全文
posted @ 2021-05-21 17:13 齐天大圣打妖怪 阅读(29) 评论(0) 推荐(0)
摘要:Spring就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架! 控制反转(Inversion of Control,缩写为IoC),是面向对象编程中的一种设计原则,可以用来减低计算机代码之间的耦合度。 IOC理论推导 1.UserDao接口 2.UserDaolmpl实现类 3.Us 阅读全文
posted @ 2021-05-20 17:44 齐天大圣打妖怪 阅读(83) 评论(0) 推荐(0)