问题描述
我可以通过以下方式进行必要的调整:
@EnableR2dbcRepositories(repositoryBaseClass = BaseRepo::class)
但这太高了。本质上,我使用需要在R2dbcEntityTemplate.class级别完成的自定义行为覆盖了顶层方法,因此如果我可以提供自定义R2DBC团队模板,那就太好了。我尝试声明bean,但是由于我的代码是硬编码,所以它没有选择我的:
/*
* (non-Javadoc)
* @see org.springframework.data.repository.core.support.RepositoryFactorySupport#getTargetRepository(org.springframework.data.repository.core.Repositoryinformation)
*/
@Override
protected Object getTargetRepository(Repositoryinformation information) {
RelationalEntityinformation<?,?> entityinformation = getEntityinformation(information.getDomainType(),information);
return getTargetRepositoryViaReflection(information,entityinformation,new R2dbcEntityTemplate(this.databaseClient,this.dataAccessstrategy),this.converter);
}
解决方法
您可以使用
代替repositoryBaseClass@ EnableR2dbcRepositories(repositoryFactoryBeanClass = MyR2dbcRepositoryFactoryBean.class)
然后在MyR2dbcRepositoryFactoryBean上,您可以使用方法setEntityOperations
来设置自己的R2dbcEntityTemplate