如何在 Spring Data JDBC 中将实体映射到表?

在 Spring Data JPA 中,我们可以通过使用@Table注释将实体映射到特定表,我们可以在其中指定模式和名称。

但是 Spring Data JDBC 使用 aNamingStrategy通过转换实体类名将实体映射到表名。例如,如果我们命名了实体类,MetricValue那么该表应该以metricvalue默认模式命名。但是我需要映射MetricValue到模式中的metric_valueapp

有什么方法可以通过注释或任何其他方式覆盖此映射?


慕码人8056858
浏览 359回答 3
3回答

德玛西亚99

Spring Data JDBC 有它自己的@Table注解,也是一个注解@Column。您只需将注释添加到您的实体并将名称指定为注释的值。举一些例子:@Table("entity")&nbsp;class MyEntity {&nbsp; &nbsp; private @Column("last_name") String name;&nbsp; &nbsp; @Column(value = "entity_id", keyColumn = "entity_index")&nbsp;&nbsp; &nbsp; private List<SomeOtherEntity> someList;}这将读取和写入MyEntity表entity而不是默认的my_entity. 该属性name将存储在列中last_name。并且从some_other_entityto反向引用的列entity将entity_id以外键列命名,通常是entity(被引用表的表名)。并且列表索引将存储在entity_index而不是默认的entity_key.我创建了一个问题来改进文档。

鸿蒙传说

命名行为由接口的默认实现定义 NamingStrategy来自参考文档,版本 1.0.2 的第 4.4.3 节:当您使用 Spring Data JDBC 提供的 CrudRepository 的标准实现时,他们期望特定的表结构。您可以通过在应用程序上下文中提供 NamingStrategy 来调整它。默认实现具有以下行为(来自 javadoc 1.0.2 版):默认为无模式,基于类的表名和基于 RelationalPersistentProperty 的列名,两者的名称部分以“_”分隔。因此,创建一个 bean,该 beanNamingStrategy在您的应用程序上下文中注册它。这是@keddok 评论中的一个例子:@Configuration@EnableJdbcRepositoriespublic class MetricStoreRepositoryConfig extends JdbcConfiguration {&nbsp; &nbsp; @Autowired&nbsp; &nbsp; private DataSource dataSource;&nbsp; &nbsp; @Bean&nbsp; &nbsp; NamedParameterJdbcOperations operations() {&nbsp; &nbsp; &nbsp; &nbsp; return new NamedParameterJdbcTemplate(dataSource);&nbsp; &nbsp; }&nbsp; &nbsp; @Bean&nbsp; &nbsp; PlatformTransactionManager transactionManager() {&nbsp; &nbsp; &nbsp; &nbsp; return new DataSourceTransactionManager(dataSource);&nbsp; &nbsp; }&nbsp; &nbsp; @Bean&nbsp; &nbsp; NamingStrategy namingStrategy() {&nbsp; &nbsp; &nbsp; &nbsp; return new NamingStrategy() {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; @Override&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public String getSchema() {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return "metric";&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; };&nbsp; &nbsp; }}

慕哥9229398

使用@Table(name = "metric_value").
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java