使用不带 jpa 的 spring-data-rest 但仅使用 JdbcTemplate
Use spring-data-rest without jpa but only JdbcTemplate
可以使用spring-data-rest without spring-data-jpa吗?
在我的应用程序中,我使用 JdbcTemplate
。这能以某种方式连接到 spring-data-rest 吗?
4年后的更新:
与此同时,spring-data-jdbc 看起来像是回答了原始问题。
不,不能。来自 introduction section of the documentation:
Spring Data REST builds on top of Spring Data repositories and automatically exports those as REST resources
如果您使用 JdbcTemplate
进行数据访问,而不是使用 Spring 数据存储库(无论是 JPA 还是任何其他受支持的后端),那么 Spring 作为 REST 资源构建和导出的数据 REST。
可以使用spring-data-rest without spring-data-jpa吗?
在我的应用程序中,我使用 JdbcTemplate
。这能以某种方式连接到 spring-data-rest 吗?
4年后的更新:
与此同时,spring-data-jdbc 看起来像是回答了原始问题。
不,不能。来自 introduction section of the documentation:
Spring Data REST builds on top of Spring Data repositories and automatically exports those as REST resources
如果您使用 JdbcTemplate
进行数据访问,而不是使用 Spring 数据存储库(无论是 JPA 还是任何其他受支持的后端),那么 Spring 作为 REST 资源构建和导出的数据 REST。