我有一个正在检查数据库条目的Spring服务。为了最小化我的存储库调用,两个查找方法都是" @ Cacheable"。但是当我尝试初始化我的服务bean而我的配置类有一个CacheManager bean定义时,我得到了NoSuchBeanDefinitionException:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'foo.mediacode.directory.MediaCodeDirectoryService' available
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:353)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:340)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1093)
at foo.mediacode.directory.MediaCodeDirectoryService.implementation(MediaCodeDirectoryService.java:63)
at foo.campaigntree.directory.CampaignTreeDirectoryService.<init>(CampaignTreeDirectoryService.java:18)
... 15 more
如果我将取出CacheManager bean定义,我可以初始化我的服务bean,它运行没有任何问题和缓存!
这是我的代码: 构造
...
@Configuration
@EnableCaching
@EnableJpaRepositories(...)
@PropertySource({...})
public class MediaCodeDirectoryServiceConfig {
private static Logger configLogger = Logger.getLogger(MediaCodeDirectoryServiceConfig.class.getName());
@Value("${jpa.loggingLevel:FINE}")
private String loggingLevel;
@Value("${mysql.databaseDriver}")
private String dataBaseDriver;
@Value("${mysql.username}")
private String username;
@Value("${mysql.password}")
private String password;
@Value("${mysql.databaseUrl}")
private String databaseUrl;
@Bean
public static PropertySourcesPlaceholderConfigurer propertyConfigInDev() {
...
}
@Bean
public MediaCodeDirectoryService mediaCodeDirectoryService() {
return new MediaCodeDirectoryService();
}
@Bean
public CacheManager mediaCodeCacheManager() {
SimpleCacheManager cacheManager = new SimpleCacheManager();
cacheManager.setCaches(Arrays.asList(new ConcurrentMapCache("mediaCodeMappingRegexCache"),
new ConcurrentMapCache("mediaCodeMappingsCache")));
return cacheManager;
}
@Bean
public JpaTransactionManager transactionManager() {
...
}
@Bean
public LocalContainerEntityManagerFactoryBean entityManagerFactory() {
...
}
public DataSource getDataSource() {
...
}
public JpaDialect getJpaDialect() {
...
}
public Properties getEclipseLinkProperty() {
...
}
public JpaVendorAdapter getJpaVendorAdapter() {
...
}
}
服务
....
public class MediaCodeDirectoryService implements MediaCodeDirectoryServiceApi {
...
@Autowired
private MediaCodeDirectoryRepository repo;
@SuppressWarnings("resource")
public static MediaCodeDirectoryServiceApi implementation() {
if (INSTANCE == null) {
ApplicationContext ctx = new AnnotationConfigApplicationContext(MediaCodeDirectoryServiceConfig.class);
INSTANCE = ctx.getBean(MediaCodeDirectoryService.class);
}
return INSTANCE;
}
...
存储库
...
@Repository
public interface MediaCodeDirectoryRepository extends CrudRepository<MediaCodeDao, Integer> {
@Cacheable("mediaCodeMappingRegexes")
@Query("SELECT m FROM #{#entityName} m WHERE (m.fooId = :fooId) AND (m.isRegex = :isRegex) ORDER BY (m.orderId DESC, m.id ASC)")
List<MediaCodeDao> findByfooIdAndIsRegexOrderByOrderIdDescAndIdAsc(@Param("fooId") int fooId, @Param("isRegex") boolean isRegex);
@Cacheable("mediaCodeMappings")
List<MediaCodeDao> findByMediaCode(String MediaCode, Pageable pageable);
}
当我调试到 DefaultListableBeanFactory 时,我可以在beanDefinitionMap中找到我的 mediaCodeDirectoryService ,并且还会在beanDefinitionNames中找到 mediaCodeDirectoryService 。但是DefaultListableBeanFactory.getBean(...)无法解析名称,而第364行中的 namedBean 为空。
当我尝试通过String获取上下文时:
INSTANCE = (MediaCodeDirectoryService) ctx.getBean("mediaCodeDirecotryService")
我避免使用NoSuchBeanDefinitionException,但我遇到了另一个。
这里的任何人都知道这可能是什么原因?我错过了配置中的某些内容吗? THX!
答案 0 :(得分:4)
通过AOP应用缓存。对于AOP Spring,使用基于代理的方法,默认是创建基于接口的代理。
public class MediaCodeDirectoryService implements MediaCodeDirectoryServiceApi {... }
在运行时使用此类定义,您将获得一个动态创建的类(Proxy$51
或类似的东西),它实现所有接口,但它不是MediaCodeDirectoryService
。但它是MediaCodeDirectoryServiceApi
。
你有2种方法可以解决这个问题,无论是程序到接口(你应该一直在做什么,因为你已经定义了接口)而不是具体的类或使用基于类的代理。
第一个选项涉及您在直接@Autowire
的地方更改代码或获取MediaCodeDirectoryService
的实例代替使用MediaCodeDirectoryServiceApi
(您应该已经做过哪些,为什么要定义一个接口)。现在你将注入代理,一切都会正常工作。
第二个选项涉及您在proxyTargetClass=true
注释上设置@EnableCaching
。然后,您将获得基于类的代理,而不是基于接口的代理。
@EnableCaching(proxyTargetClass=true)