摘要: 1、元注解 元注解是指注解的注解。包括 @Retention @Target @Document @Inherited四种。 1.1、@Retention: 定义注解的保留策略 @Retention(RetentionPolicy.SOURCE) //注解仅存在于源码中,在class字节码文件中不包含 @Retention(RetentionPolicy.CLASS) ... 阅读全文
posted @ 2016-01-23 22:42 草旅虫 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 元素会扫描指定的包极其所有子包,并查找能够自动注册为Spring Bean的类.base-package属性标识了 元素所扫描的包 会自动检测的标注Bean @Component ---通用构造型注解 @Controller--标识为 spring mvc 控制器 @Repository --标识为数据仓储 @Service... 阅读全文
posted @ 2016-01-23 22:42 草旅虫 阅读(249) 评论(0) 推荐(0) 编辑
摘要: /// /// 给DataGridView添加全选 /// public class AddCheckBoxToDataGridView { public static System.Windows.Forms.DataGridView dgv; pub... 阅读全文
posted @ 2016-01-23 10:48 草旅虫 阅读(838) 评论(0) 推荐(0) 编辑