Here my error is.
@Service(value = "OtherService")
public class OtherService {
@Qualifier("CommonService")
@Resource
private CommonService commonService;
}
Type: Posts; User: javamutu; Keyword(s):
Here my error is.
@Service(value = "OtherService")
public class OtherService {
@Qualifier("CommonService")
@Resource
private CommonService commonService;
}
Although I used @Resource annotation, I get the same problem.
Could you provide the suggestion to me? I get the problem in component-san;
Inject spring bean from another bean in jar file
Can we generate classes with Spring Bean annotation as jar file?
How to inject another Spring Bean from the class of that jar?
Can you provide the possible way? When I get as below it does not...