我已经读过你可以在Spring 4中拥有@Autowired泛型,这很棒.
我有一个抽象的RedisService类,我希望@Autowired是一个通用的RestTemplate,如下所示:
public abstract class RedisService
我的Java配置为valueTemplates为@Autowired然后看起来像:
@Bean
public RedisTemplate
扩展RedisService< T>的每个类.类看起来像:
@Service
public class MyTypeAService extends RedisService
有没有更干的方法我可以使用我的Java配置创建这些RedisTemplate @Beans?
最佳答案
原文链接:https://www.f2er.com/spring/432110.html