MongoDB中的自定义存储库实现

时间:2018-06-12 09:41:44

标签: java spring mongodb spring-boot

我正在尝试执行以下操作

public interface FooRepo  extends
MongoRepository<Foo, String>,GeneralCustomRepo{

}

public interface BarRepo  extends
MongoRepository<Bar, String>,GeneralCustomRepo{

}

public interface GeneralCustomRepo {

void generalMethodHere();
//my method here
}

但我遇到问题,因为使用Spring启动的Mongo Custom存储库的命名约定要求将我的GeneralCustomRepo命名为FooRepoCustom或BarRepoCustom。我希望两个接口都能够实现generalMethodHere(),而不必创建两个单独的接口。那可能吗?

0 个答案:

没有答案