为澄清起见,我有一个@Component
类,其中包含两个有线bean。我想优先处理每个bean。那有可能吗?
@Component
public class SecureMessages {
@Autowired // load second
private ObjectMapper objectMapper;
@Autowired // load first
private LocalCacheServiceImpl LocalCacheServiceImpl;
}
根据上述代码,我想在调用此组件类时首先为本地缓存创建一个bean,然后可以创建其余的bean。
答案 0 :(得分:1)