用json文件声明Aop切片

Jul 10, 2017 10:38:44 AM

作者:wendal

需使用的类

  • org.nutz.ioc.aop.config.impl.JsonAopConfigration

看看一个示例的ioc配置文件

配置示例:

  1. var ioc = {
  2. log : {
  3. type :'org.nutz.aop.interceptor.LoggingMethodInterceptor'
  4. },
  5. myMI : {
  6. type : 'org.nutz.ioc.aop.config.impl.MyMI'
  7. },
  8. pet2 : {
  9. type : "org.nutz.ioc.aop.config.impl.Pet2"
  10. },
  11. $aop : {
  12. type : 'org.nutz.ioc.aop.config.impl.JsonAopConfigration',
  13. fields : {
  14. itemList : [
  15. ['.+','toString','ioc:log'],
  16. ['.+','.+','ioc:myMI'],
  17. ['.+','.+','org.nutz.ioc.aop.config.impl.MyMI2','false']
  18. ]
  19. }
  20. }
  21. }

可以看到, 除了$aop这个beanName外,其他的与普通的ioc配置文件没有任何区别.

$aop ,其实是org.nutz.ioc.aop.config.AopConfigration接口的IOCNAME字段的值,只有你声明这个名字,且类型为这个接口的实现,就能轻易的配置Ioc.

估计你已经猜到,org.nutz.ioc.aop.config.impl.JsonAopConfigration就是其中一个实现!

细看这个部分代码:

  1. fields : {
  2. itemList : [
  3. ['.+','toString','ioc:log'],
  4. ['.+','.+','ioc:myMI'],
  5. ['.+','.+','org.nutz.ioc.aop.config.impl.MyMI2','false']
  6. ]
  7. }

使用JsonAopConfigration,只需要为其itemList赋值.

需要什么值? 对,一个数组.

数组的每一行,对应一条规则:

  1. ['.+','toString','ioc:log'],
  2. ['.+','.+','ioc:myMI']
  3. ['com\.wendal\.nutz\..+','get.+','org.nutz.ioc.aop.config.impl.MyMI2','false']

规则如下:

  • 第一个值,对应className,必选,用于匹配类的全称的正则表达式
  • 第二个值,对应methodName,必选,用于匹配方法名的正则表达式
  • 第三个值,对应interceptorName,必选,如果以ioc:开头,则代表对于ioc容器的一个对象,否则,将认为是一个类名
  • 第四个值,对应singleton,可选,仅当interceptorName为类名时有效

本页面的文字允许在知识共享 署名-相同方式共享 3.0协议GNU自由文档许可证下修改和再使用。

原文: http://nutzam.com/core/aop/aop_json.html