前段时间用Hibernate时用注解(即annotation)的方式来定义元数据的映射,一直都很想知道annotation是怎么实现的,今天终于做了一个自己的annotation demo
1、定义一个annotation的接口
package annotation.test;
/**
* @author longtop
*
*/
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Description {
String column();
String comment();
}
2、在类中引用annotation
package annotation.test;
public class TableTest {
public String id;
public String name;
@Description(column = "id",comment="主键")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Description(column = "name", comment = "用户名")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
3、一个测试类,取出annotation定义的元数据
package annotation.test;
import java.lang.reflect.Method;
public class Test {
public static void main(String[] args) {
String className = "annotation.test.TableTest";
try {
Class tableTest = Class.forName(className);
Method[] method = tableTest.getMethods();
Description des = null;
for (int i = 0; i < method.length; i++) {
Method meth = method[i];
if (meth.isAnnotationPresent(Description.class)) {
des = meth.getAnnotation(Description.class);
//System.out.println(des.annotationType());
System.out.println(des.column() + " : " + des.comment());
}
}
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
还有什么高级的应用,请大家不吝赐教阿。
分享到:
相关推荐
.first else { return } print("地址:\(placemark.name), \(placemark.locality), \(placemark.administrativeArea)") } ``` 通过上述步骤,你已经可以实现一个基础的iOS地图定位功能。在实际项目中,可能还...
在这个demo中,我们可能会看到Code First的使用,开发者可能定义了一些实体类,然后通过Data Annotation或 Fluent API 来指定数据库的映射规则。这些实体类会与数据库中的表对应,属性则对应表中的列。 接下来,...
在"MogoDB_demo"项目中,可能包含了上述所有步骤的实现,以及相关的测试案例。这个例子提供了一个快速上手SpringBoot与MongoDB集成的途径,你可以直接下载并运行,以便于理解和学习如何在实际项目中使用mongo...
@XmlElement(name = "first-name") public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } @XmlElement(name = "last-name")...
* -keepattributes *Annotation* * -keepclassmembers class * { * void *(android.view.View); * *** *Click(...); * *** *Event(...); * } * 3. 方法参数形式必须和type对应的Listener接口一致. * 4. 注解...
2. 打开浏览器,输入URL:`http://localhost:8080/webDemo/first`。 3. 如果一切顺利,页面上将显示`Hello, this is my first servlet!`。 至此,我们已经成功地在MyEclipse环境下配置并运行了一个简单的Servlet...
.findFirst().orElseThrow(() -> new RuntimeException("No provider found")) .getUri().toString(); // 使用RestTemplate或Feign等方式调用服务提供者的接口 // 这里仅作示例,实际应用中可能需要处理异常和...
spring.rabbitmq.first.host=node9 spring.rabbitmq.first.port=5670 spring.rabbitmq.first.username=guest spring.rabbitmq.first.password=guest spring.rabbitmq.second.host=localhost spring.rabbitmq.second...
项目Demo通过关键字搜索获得poi数组数据,具体见工程。此处从获得poi数组开始说明。 创建四叉树coordinateQuadTree来建立poi的四叉树索引。 创建过程较为费时,建议另开线程。创建四叉树完成后,计算当前mapView下...
package my.demo ``` 值得注意的是,Kotlin 并不要求文件系统的目录结构与包名相匹配,这为开发人员提供了更大的灵活性。 **1.2 函数定义** 函数是 Kotlin 的核心组成部分之一,可以通过以下几种方式定义: - **...
val myMethod = myClass.memberFunctions.first { it.name == "sayHello" } ``` #### 与Java的互操作性 Kotlin与Java的互操作性非常强,可以轻松地在Kotlin中调用Java代码,反之亦然。 - **在Kotlin中调用Java...