注解就是源代码的元数据,通俗的讲就是代码中的标签。
注解有如下特点:
1.注解是一个附属品,依赖其他元素(包,类,方法,属性等等)存在
2.注解本身没有作用,在恰当的时候由外部程序进行解析才会发生作用
1.按照来源分
2.按照生命周期划分
元注解指的是用于修饰注解的注解
1.@Retention:指明 Annotation 的生命周期,传入的值是一个枚举类型,可选值为:
2.@Target:指明 Annotation 可以修饰程序哪些元素,传入的值为ElemetType[] 类型,值可为:
3.@Documented:使用此修饰的注解将会被 javadoc 工具提取成文档,使用此注解,其 @Retention 必须被设置为 RetentionPolicy.RUNTIME 。
4.@Inherited:具有继承性。
自定义注解需要注意的问题:
//Target表明我们的注解可以用在那些地方,用在方法,属性上
@Target(value={ ElementType.METHOD,ElementType.TYPE})
//Retention表明我们的注解在什么地方还有效
@Retention(value= RetentionPolicy.RUNTIME)
//Documented 表示是否将我们的注解生成在JAVAdoc中
@Documented
//Inherited 子类可以继承父类的注解
@Inherited
@interface my{
}
public class Main {
//注解可以显示赋值,如果没有默认值,我们就必须给注解赋值
@my(name="cc",school = "清华")
public void cc(){}
public static void main(String[] args) {}
}
@Target(value={ ElementType.METHOD,ElementType.TYPE})
@Retention(value= RetentionPolicy.RUNTIME)
@Documented
@Inherited
@interface my{
//注解的参数:参数类型+参数名()
String name() default "";
int age()default 0;
int id()default -1;//如果为-1,代表不存在
String[] school();
}
反射指的是程序在运行期间借助反射API取得任何类的内部信息,并通过这些内部信息去操作对应对象的内部属性和方法
任何一个类,在第一次使用时,就会被JVM加载到堆内存中,JVM加载类成功后,就会在方法区中产生一个对应的Class对象(一个类只要一个Class对象),这个Class对象包含被加载类的全部结构信息
每一个类,都有一个 class 静态属性,这个静态属性就是类对应的 Class 对象。
Class<Person> cl1 = Person.class;
Person p1 = new Person();
Class<Person> cl2 = (Class<Person>) p1.getClass();
try {
Class cl3 = Class.forName("com.cc.Person");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
ClassLoader cl = Person.class.getClassLoader();
try {
Class cl4 = cl.loadClass("com.cc.Person");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
反射的基本使用包括创建对象,设置属性和调用方法,Class对象中大多数get方法有Declared和无Declared
1.无 Declared:只能获取到 public 修饰的,包括当前类和所有父类。
2.有 Declared:获取到当前类所有的(含有 private),但不包括其父类。
package com.company;
import sun.awt.geom.AreaOp;
import java.lang.annotation.*;
import java.lang.reflect.Field;
public class Main {
public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException {
Class c1 = Class.forName("com.company.student");
//通过反射获得注解
Annotation[] annotations = c1.getAnnotations();
for (Annotation annotation : annotations) {
System.out.println(annotation);
}
//获得注解的value值
Table table = (Table)c1.getAnnotation(Table.class);
String value = table.Value();
System.out.println(value);
//获得类指定的注解 通过name来查看详细的信息,也可以通过id,age来获得信息
Field f1 = c1.getDeclaredField("name");
FieldCc annotation = f1.getAnnotation(FieldCc.class);
System.out.println(annotation.colnumName());
System.out.println(annotation.type());
System.out.println(annotation.lenght());
}
}
@Table(Value = "db_student")
class student{
@FieldCc(colnumName = "db_id",type = "int",lenght = 10)
private int id;
@FieldCc(colnumName = "db_age",type = "int",lenght = 10)
private int age;
@FieldCc(colnumName = "db_name",type = "varchar",lenght = 3)
private String name;
public student() {
}
public student(int id, int age, String name) {
this.id = id;
this.age = age;
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "student{" +
"id=" + id +
", age=" + age +
", name='" + name + '\'' +
'}';
}
}
//类名的注解
@Target(value = ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@interface Table{
String Value();
}
//属性的注解
@Target(value = ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface FieldCc{
String colnumName();
String type();
int lenght();
}
使用一个代理对象将原始对象包装起来,然后用该代理对象取代原始对象,任何对原始对象的调用都要通过代理对象,代理对象决定是否以及何时将代理方法调用转到原始对象上。
代理类和原始对象在编译期间就确定下来了,不利于程序的扩展,且每一个代理之能为一个接口服务,这就会在开发的过程中产生多大的代理类
静态代理的实现:
动态代理是通过 Java 的反射机制实现的。通过动态代理,只需一个代理对象就可以代理所有的对象。