我正在尝试执行以下操作
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(),而不必创建两个单独的接口。那可能吗?