当前位置: 代码迷 >> J2EE >> spring AspectJ引述IOC对象为空
  详细解决方案

spring AspectJ引述IOC对象为空

热度:81   发布时间:2016-04-17 23:45:37.0
spring AspectJ引用IOC对象为空
@Aspect
public class LoggingAspect {

@Autowired
private LoggingAspectProcessor processor;
@Autowired
ControlManagerService service;

@Around("@annotation(com.jp.tic.system.core.annotation.Log)")
// @Around("execution( * cn.tisson.pms.dao..*(..))")
public Object log(ProceedingJoinPoint pjp) throws Throwable {
return processor.process(pjp);
}
}


求解,为何在这里面引用的processor和service为空,在其他,比如controller里面,又不为空呢?
------解决方案--------------------
楼主看看这个,Spring的自动注入有区分的,不是每个class都能行的
http://blog.csdn.net/wangpeng047/article/details/8868753
  相关解决方案