首页
App
&
Coffee
文档
项目
分享
反馈
俱乐部
登录
注册
关于AOP传参的建议
月亮一直都在
2019-06-26 11:22
目前
Interceptor 不支持在注解中传递参数,类似功能的
Interceptor需要写成多个
Interceptor,如果可以在注解中传参,只需要在
Interceptor中做判断即可。
项目:
JFinal
评论区
杜福忠
2019-06-26 14:37
自定义一个注解 BeforeVal, 然后在Interceptor 中去取值判断就好了,
比如: inv.getMethod().getAnnotation(BeforeVal.class)
@BeforeVal({"b", "c"})
@Before({BbbInter.class, CccInter.class})
回复
zhangtianxiao
2019-06-26 19:41
这个场景 自己加个注解比较合适
回复
发送
我要反馈
热门反馈
扫码入社
比如: inv.getMethod().getAnnotation(BeforeVal.class)
@BeforeVal({"b", "c"})
@Before({BbbInter.class, CccInter.class})