我有问题..我正在创建一个 aspectj 类并进入我的类我需要访问一个 spring-boot 服务,但是当我尝试使用 @Autowired 或通过构造函数注入它时我有一个错误:
“无法自动装配。找不到‘UserService’类型的 bean”
这是我的课:
package com.ingressolive.bar.aop.interceptor;
@Aspect
@Configuration
public class TenantAspect {
private final Logger log = LoggerFactory.getLogger(this.getClass());
private final Environment env;
@Autowired
private UserService userService;
public TenantAspect(Environment env) {
this.env = env;
}
@Before("execution(* com.ingressolive.bar.service.*.*(..))")
public void aroundExecution(JoinPoint pjp) {
log.debug("##################################### Entered here !!!!!!!!!!!!!!!!!!!!!!!!!!");
}
}
有人能帮我吗?
芜湖不芜
相关分类