zoukankan      html  css  js  c++  java
  • org.tinygroup.annotation-注解开发框架

    提供tiny框架对注解的定义标签和注解元素的解析注入。并提供如下文件处理器 

                                                    处理器名                                                                                          处理器描述                                         
    AnnotationClassFileProcessor 注解类文件搜索器,以多线程的方式执行搜索。                                 
    AnnotationFileProcessor 注解配置文件处理器,可以处理*.annotation.xml命名规范的注解规范配置文件。                                 



    注解配置文件示例如下: 

    1. <annotation-class-matchers>
    2.     <annotation-class-matcher class-name="(.)Flow" annotation-id="service"
    3.         annotation-type="org.tinygroup.service.annotation.ServiceComponent">
    4.         <processor-beans>
    5.             <processor-bean enable="true" name="serviceAnnotationAction">
    6.             </processor-bean>
    7.         </processor-beans>
    8.     </annotation-class-matcher>
    9.     <annotation-class-matcher class-name="(.)Flow" annotation-id="flow"
    10.         annotation-type="org.tinygroup.flow.annotation.config.ComponentDefine">
    11.         <processor-beans>
    12.             <processor-bean enable="true" name="flowAnnotationAction">
    13.             </processor-bean>
    14.         </processor-beans>
    15.     </annotation-class-matcher>
    16. </annotation-class-matchers>
  • 相关阅读:
    浅谈服务端渲染
    vuex数据持久化
    vuex中的命名空间
    如果在项目中使用阿里图标库
    vue中的插槽
    webpack相关以及搭建react环境
    数组的reduce方法
    再也不用等后端的接口就可以调试了Json-server
    react中如何使用swiper
    解决vue中组件库vant等ui组件库的移动端适配问题
  • 原文地址:https://www.cnblogs.com/j2eetop/p/4610383.html
Copyright © 2011-2022 走看看