自定义注解以及通过反射获取注解

Posted leduo-zuul

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义注解以及通过反射获取注解相关的知识,希望对你有一定的参考价值。

一、自定义的注解

@Target({ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface jdbcConfig {
    String ip();
    int port() default 3306;
    String database();
    String encoding();
    String username();
    String password();
}

二、通过反射获取注解信息

@jdbcConfig(ip="127.0.0.1",database="test",encoding="UTF-8",username="root",password="admin")
public class AnnotationDButil {
    static {
        try {
            Class.forName("com.mysql.jdbc.Driver");
        } catch (ClassNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    
    public static Connection getConnection() throws SQLException {
        //通过反射获取注解信息
        jdbcConfig annotation = AnnotationDButil.class.getAnnotation(jdbcConfig.class);
        String ip = annotation.ip();
        int port = annotation.port();
        String database = annotation.database();
        String username = annotation.username();
        String password = annotation.password();
        String encoding = annotation.encoding();
        String url = String.format("jdbc:mysql://%s:%d/%s?characterEncoding=%s", ip,port,database,encoding);
        return DriverManager.getConnection(url, username, password);
    }
    
    public static void main(String[] args) {
        try {
            Connection c = getConnection();
            System.out.println(c);
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        
    }
}

 

以上是关于自定义注解以及通过反射获取注解的主要内容,如果未能解决你的问题,请参考以下文章

[杂记]自定义注解以及反射的应用

Java的自定义注解及通过反射获取注解

AOP通过反射获取自定义注解

简单使用自定义注解

简单使用自定义注解

自定义注解的实现