如何编写弹簧数据的自定义模块

时间:2018-01-28 11:19:18

标签: spring-data

我需要扩展spring数据以支持我自己的自定义后端。从spring data website开始,似乎可以将社区模块添加到框架中,从而使您能够支持自定义后端。但是,我似乎无法找到一些代码示例/ docs来说明模块实现机制。

即使是使用基于文件的持久性的基本示例也会非常有用。

1 个答案:

答案 0 :(得分:1)

您只需要扩展它,然后您可以覆盖方法并添加自己的方法。如果您正在使用IntelliJ,只需实现/扩展(例如)CrudRepository,执行Generate Code并选择Implement methodsOverride methods

public MyRepository extends CrudRepository<T, Long>{
//in Mac, you press command + N. Then select Override methods.
//in Windows, I don't think Generate Method is given a shortcut. You can find it in the menu bar

}