我有一个我需要手动设置ID(PK)的实体。 我有一些用于审计和PK的抽象@MappedSuperclass,我还想要使用它。所以我的想法是覆盖id列以摆脱@GeneratedValue(策略= GenerationType.AUTO。
所以我有这样的事情:
@Entity
@Table(name = Constants.MERCHANT_PREFIX + "MERCHANT")
@Cacheable(false)
public class Merchant extends AbstractAuditable<String, Long> {
@AttributeOverride(name = "id", column = @Column(name="ID"))
private Long id;
@Override
public Long getId() {
return id;
}
@Override
public void setId(Long id) {
this.id = id;
}
}
@MappedSuperclass
@EntityListeners(value = { AuditingEntityListener.class })
public abstract class AbstractAuditable<U, PK extends Serializable> extends AbstractPersistable<PK> {
...
}
@MappedSuperclass
public abstract class AbstractPersistable<PK extends Serializable> implements Persistable<PK> {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "ID")
private PK id;
public PK getId() {
return id;
}
protected void setId(final PK id) {
this.id = id;
}
}
它工作正常(服务器启动并且招摇)
但是我的集成测试失败了,我在下面有这个错误。 你知道为什么吗?我想也许我不应该以这种方式使用@AttributeOverride ...而且我想找到一个工作方式,我的Merchant类仍然扩展我的抽象类(审计和PK)
org.springframework.dao.InvalidDataAccessResourceUsageException:
could not prepare statement;
SQL [insert into MER_MERCHANT (ID, CREATED_BY, CREATED_DATE, LAST_MODIFIED_BY, LAST_MODIFIED_DATE, ALLOW_ACCESS, id)
values (default, ?, ?, ?, ?, ?, ?)];
nested exception is org.hibernate.exception.SQLGrammarException:
could not prepare statement
单元测试:
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(classes = {ApplicationTest.class})
@TestExecutionListeners({ DependencyInjectionTestExecutionListener.class,
DirtiesContextTestExecutionListener.class,
TransactionalTestExecutionListener.class,
DbUnitTestExecutionListener.class })
@DatabaseSetup(value = "classpath:merchantData.xml")
@DatabaseTearDown(value="classpath:merchantData.xml", type = DatabaseOperation.DELETE_ALL)
public class RestMerchantControllerTest extends AbstractControllerTest {
@Test
public void testCreateMerchant() throws Exception {
final Long merchantId = 2L;
final Boolean allowAccess = true;
MerchantCreateVO merchantCreateVO = StubVOBuilder.buildMerchantCreateVO(allowAccess);
String requestBody = JsonUtils.jsonFormat(merchantCreateVO);
mvc.perform(post("/merchants/" + merchantId).contentType(MediaType.APPLICATION_JSON).content(requestBody)).andExpect(status().isOk());
}
}
和ApplicationTest :( ApplicationTest与我们用于设置JPA的应用程序非常相似)
@Configuration
@ComponentScan(value = "uk.co.xxx.yyy", excludeFilters = @ComponentScan.Filter(value=Configuration.class, type = FilterType.ANNOTATION ))
@EnableWebMvc
@EnableTransactionManagement
@PropertySources({@PropertySource("classpath:hibernate.properties"), @PropertySource("classpath:junit-persistence.properties"), @PropertySource("classpath:application-test.properties")})
@EnableJpaRepositories(basePackages = "uk.co.xxx.yyy.merchant.data.repository")
@EnableJpaAuditing(auditorAwareRef = "springSecurityAuditorAware")
public class ApplicationTest {
@Bean
public LocalContainerEntityManagerFactoryBean entityManagerFactory(){
...
}
@Bean
public JpaTransactionManager transactionManager() {
...
}
}
使用服务器,我有这个插入:
insert
into
MER_MERCHANT
(CREATED_BY, CREATED_DATE, LAST_MODIFIED_BY, LAST_MODIFIED_DATE, ALLOW_ACCESS, id)
values
(?, ?, ?, ?, ?, ?)
通过集成测试:
insert
into
MER_MERCHANT
(ID, CREATED_BY, CREATED_DATE, LAST_MODIFIED_BY, LAST_MODIFIED_DATE, ALLOW_ACCESS, id)
values
(default, ?, ?, ?, ?, ?, ?)
答案 0 :(得分:3)
所以我的想法是覆盖id列以摆脱它 @GeneratedValue(strategy = GenerationType.AUTO。
@AttributeOverride注释用于向JPA发出信号,表示您希望将属性名称的默认映射更改为列名。如果您正在开发一个与遗留系统互操作的JPA应用程序,则需要这样做。遗留系统的字段或列的名称与您的名称不同。
来自JavaDoc,@ AttributeOverride是......
用于覆盖Basic(无论是显式还是默认)属性或字段或Id属性或字段的映射。
可以应用于扩展映射的超类或嵌入字段或属性的实体,以覆盖由映射的超类或可嵌入类(或其某个属性的可嵌入类)定义的基本映射或id映射。
不幸的是,这个注释仅对可以通过@Column API引用的属性或字段映射有效...而@Column注释基本上允许您仅更改字段名称的映射。您不能使用@AttributeOverride更改字段类型或任何其他映射。因此,@ GeneratedValue映射将继续由@MappedSuperclass的所有子类继承。