# 注解Annotation
特别在系统框架的搭建过程中,往往需要很多的配置文件,比如数据源、IOC、AOP、框架本身的映射(如 Hibernate 表与字段),需要的配置文件会导致系统越来越复杂,而且维护很不方便,一旦配置文件出错,很容易导致系统无法运行。
在 JDK1.5 以后,引入了注解 Annotation 技术,极大的方便了配置化的编程,很多的技术和框架都使用了技术,如 Servlet/Filter/Spring/SpringMVC/Hibernate/Nutz。
## 定义
~~~
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
@Documented
public @interface Column {
boolean hump() default true;
String name() default "";
}
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Documented
public @interface Table {
String value();
}
~~~
## 应用
~~~
package com.ntqingniao.annotation;
import java.util.Date;
@Table("t_sys_account")
public class Account {
@Column(name="ID")
private Integer id;
@Column
private String name;
@Column(name="PASSWOR")
private String password;
@Column(hump=true)
private Date createTime;
private String desc;
}
~~~
## 解析注解数据
~~~
package com.ntqingniao.annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.Date;
public class Client2 {
public static void main(String[] args) throws Exception {
Account account = new Account();
account.setId(10);
account.setName("Tom");
account.setPassword("123456");
account.setCreateTime(new Date());
Student stu = new Student();
stu.setId(12);
stu.setName("helen");
stu.setPassword("aaaaaa");
stu.setDesc("hello,helen");
stu.setCreateTime(new Date());
System.out.println(gerInsertSql(account));
System.out.println(gerInsertSql(stu));
// insert into t_sys_account(ID,NAME,PASSWORD,CREATE_TIME) values(10,
// "Tom", "123456", "20170711");
}
public static String gerInsertSql(Object account) throws Exception {
String sql = "insert into ";
String values = "";
Class<?> c = null;
c = account.getClass();
Table table = c.getAnnotation(Table.class);
String tableName = table.value();
sql += tableName + "(";
Field[] fields = c.getDeclaredFields();
for (Field field : fields) {
Column column = field.getAnnotation(Column.class);
String columnName = field.getName();
if (null != column) {
// 首先判断hump属性是否为true
columnName = Client3.toHump(columnName);
// 否则取name属性值
String cn = column.name();
if (null != cn && !cn.trim().equals("")) {
columnName = cn;
} else {
// 如果name属性值为空,则取字段名
}
sql += columnName + ",";
// 获取字段的属性值,并拼写到values变量中
Method getMethod = c.getMethod("get" + Client3.captureName(field.getName()));
Object obj = getMethod.invoke(account);
values += Client3.changeToSql(obj) + ",";
}
}
sql = sql.substring(0, sql.length() - 1) + ")" + " values(" + values.substring(0, values.length() - 1) + ")";
return sql;
}
}
~~~
- 前言
- 计算机概论
- 数据库
- 数据库介绍
- MySQL的安装
- SQL
- 表基本操作
- 修改数据语句
- 数据检索操作
- 多表数据操作
- 表结构设计
- 综合应用
- JAVA
- JAVA 介绍
- JAVA 运行原理
- JDK 配置
- 类和对象
- 数据类型
- 变量
- 直接量
- 运算符
- 流程控制
- 数组结构
- 面向对象
- 隐藏和封装
- 深入构造器
- 类的继承
- 多态
- 包装类
- final 修饰符
- 抽象类
- 接口
- 集合框架
- 常用类学习
- 异常处理
- 设计模式-单例模式
- JDBC
- JSP&Servlet
- Web应用
- Tomcat
- JSP
- Scriptlet
- Page 指令
- 包含指令
- 跳转指令
- 用户注册实例
- JSP练习
- 内置对象
- Servlet
- 过滤器
- Web分层思想
- EL表达式
- JSTL
- 分页实现
- AJAX&JSON
- 开发步骤
- 路径问题
- Log4j
- 电子书城
- 案例分析
- 核心代码
- Java 高级
- 文件操作
- 泛型
- 类加载机制和反射
- 注解 Annotation
- Mybatis框架
- 框架介绍
- Mybatis简单实现
- 表基本操作
- 优化配置文件
- 表字段名与实体类属性名不同的解决方案
- 一对一关联
- 一对多关联
- 教学管理
- 学员名录
- 周测统计
- 2017-10-27
- 2017-11-03
- 2017-11-10
- 2017-11-17
- 课堂作业
- 班会纪要
- 2017-10-24
- 缺勤记录
- 班级备忘录
- 违纪统计
- 编程素养
- Day001
- Day002
- Day003
- Day004
- Day005
- Day006
- Day007
- Day008
- Day009
- Day010
- Day011
- Day012
- Day013
- Day014
- Day015
- Day016
- Day017
- Day018
- Day019