通过注解将MsgPushService注入到MsgPushInterceptor时为空,求解。
@IocBean
public class MsgPushService
@IocBean
public class MsgPushInterceptor implements MethodInterceptor{
@Inject
private MsgPushService msgPushService;
通过注解将MsgPushService注入到MsgPushInterceptor时为空,求解。
@IocBean
public class MsgPushService
@IocBean
public class MsgPushInterceptor implements MethodInterceptor{
@Inject
private MsgPushService msgPushService;
有没有用js配置了这个bean,导致重复了?
来自炫酷的 NutzCN
可以的话试试1.r.56.r3
来自炫酷的 NutzCN
*用js配置的aop
var ioc = {
$aop : {
type : 'org.nutz.ioc.aop.config.impl.JsonAopConfigration',
fields : {
itemList : [
['com.dialect.module.manage.TopicModule', '^add$', 'com.dialect.interceptor.MsgPushInterceptor', 'false']
]
}
}
}*
写错了,不是直接写类名,而是 ioc:类名首字母小写
来自炫酷的 NutzCN