• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    JSP 中Spring组合注解与元注解实例详解

    JSP 中Spring组合注解与元注解实例详解

    摘要: 注解(Annotation),也叫元数据。一种代码级别的说明。它与类、接口、枚举是在同一个层次。它可以声明在包、类、字段、方法、局部变量、方法参数等的前面,用来对这些元素进行说明

    1. 可以注解到别的注解上的注解称为元注解,被注解的注解称为组合注解,通过组合注解可以很好的简化好多重复性的注解操作

    2. 示例组合注解

    import org.springframework.context.annotation.ComponentScan;
    import org.springframework.context.annotation.Configuration;
    import java.lang.annotation.*;
    @Target(ElementType.TYPE)
    @Retention(RetentionPolicy.RUNTIME)
    @Documented
    @Configuration
    @ComponentScan
    public @interface GroupAnnotation {
      String[] value() default {};
    }
    

    代码解释:组合@Configuration 与 @ComponentScan 元注解,并覆盖value参数

    3. 编写普通Bean

    @Servicepublic class DemoService
     { 
     public void sys()
     {   System.out.println("组合注解示例"); 
     }
    }

    4. 使用组合注解的配置类

    @GroupAnnotation("com.xuanwu.annotation")
    public class DemoConfig {
    }
    

    5. 运行

    public class Main {
      public static void main(String[] args) {
       AnnotationConfigApplicationContext context = new
          AnnotationConfigApplicationContext(DemoConfig.class);
       DemoService demoService = context.getBean(DemoService.class);
       demoService.sys();
      }
    }
    
    

    感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

    您可能感兴趣的文章:
    • Spring mvc Controller和RestFul原理解析
    • SpringBoot http请求注解@RestController原理解析
    • Spring注解@RestControllerAdvice原理解析
    • 通过实例解析Spring组合注解与元注解
    • Spring的组合注解和元注解原理与用法详解
    • 解决没有@RunWith 和 @SpringBootTest注解或失效问题
    • Spring @Configuration注解及配置方法
    • Spring @RestController注解组合实现方法解析
    上一篇:JSP 中Spring的Resource类读写中文Properties实例代码
    下一篇:jsp中点击图片弹出文件上传界面及实现预览实例详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    JSP 中Spring组合注解与元注解实例详解 JSP,中,Spring,组合,注解,与,