package org.springmorning.demo.javabase.annotation.meta;
import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
/**
* @author 春晨
* Copyright ©2019 春晨 https://www.cnblogs.com/springmorning/p/10261472.html
*/
@Documented
@Inherited
public @interface Book {
//书名
String name();
//出版日期
String publishedDate();
//作者
String author();
}
package org.springmorning.demo.javabase.annotation.meta;
/**
* @author 春晨
* Copyright ©2019 春晨 https://www.cnblogs.com/springmorning/p/10261472.html
*/
@Book(
name = "Spring in Action",
author = "Craig Walls",
publishedDate = "2008-10-1"
)
public class DocumentAnnotation {}