是否可以在没有spring-data-jpa的情况下使用spring-data-rest?
在我的应用程序中,我使用JdbcTemplate。这可以用某种方式连接到spring-data-rest吗?
答案 0 :(得分:3)
不,它不能。来自introduction section of the documentation:
Spring Data REST构建于Spring Data存储库之上,并自动将其作为REST资源导出
如果您使用JdbcTemplate
进行数据访问,而不是使用Spring Data存储库(无论是JPA还是其他任何受支持的后端),那么Spring Data REST就无需构建和导出作为REST资源。