我有一个db代码jar,我在不同的应用程序中使用它来访问db。我正在使用spring data jpa
。我需要调用refresh来检查db中某些其他应用程序的行更改。在这里我如何实现它。
我的StudentRepository
界面:
public interface StudentRepository extends JpaRepository<StudentEntity, Integer>, StudentRepositoryCustom {}
我的StudentRespositoryCustom
界面
public interface StudentRepositoryCustom {
void detach(StudentEntity studentEntity);
void refresh(StudentEntity studentEntity);}
我的StudentRepositoryCustomImpl
班级
public class StudentRepositoryImpl implements StudentRepositoryCustom {
@PersistenceContext
EntityManager entityManager;
@Override
@Transactional
public void detach(StudentEntity studentEntity) {
entityManager.detach(studentEntity);
}
@Override
@Transactional
public void refresh(StudentEntity studentEntity) {
entityManager.refresh(studentEntity);
}}
我的测试
@Test
public void refreshTest(){
StudentEntity studentEntity = studentRepository.findOne(6);
studentRepository.refresh(studentEntity);
}
但它抛出了这个例外:
org.springframework.dao.InvalidDataAccessApiUsageException: Entity not managed; nested exception is java.lang.IllegalArgumentException: Entity not managed
at org.springframework.orm.jpa.EntityManagerFactoryUtils.convertJpaAccessExceptionIfPossible(EntityManagerFactoryUtils.java:384)
at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.translateExceptionIfPossible(AbstractEntityManagerFactoryBean.java:492)
at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:59)
hibernate-core-5.2.1.final
SessionImpl
类中的这一行返回null
EntityEntry entry = persistenceContext.getEntry( object );
它应该返回我认为的实体。
我的persistence.xml
文件是
<persistence-unit name="testPersitanceUnit" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<class>com.sample.dao.gen.StudentEntity</class>
<properties>
<property name="hibernate.archive.autodetection" value="class"/>
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.format_sql" value="true"/>
<property name="hbm2ddl.auto" value="update"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
<property name="hibernate.enable_lazy_load_no_trans" value="true" />
</properties>
</persistence-unit>
我的spring db配置文件是
<jpa:repositories base-package="com.sample.dao.repos"
entity-manager-factory-ref="entityManagerFactory" transaction-manager-ref="transactionManager"/>
<!-- Enable the component scan (auto wiring etc) for the following package -->
<context:component-scan base-package="com.sample.dao" />
<!-- Make sure the following is specified to enable transaction -->
<tx:annotation-driven />
<bean class="org.springframework.orm.jpa.JpaTransactionManager" id="transactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<!-- This defines the entity manager factory with some custom properties -->
<bean id='entityManagerFactory' primary="true" class='org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean'>
<property name="persistenceUnitName" value="testPersitanceUnit"/>
<property name='dataSource' ref='dataSource' />
<property name="packagesToScan" value="com.sample.dao" />
enter code here
答案 0 :(得分:0)
试
public StudentEntity refresh(StudentEntity studentEntity) {
StudentEntity managedEntity = entityManager.find(StudentEntity.class, studentEntity.getId());
entityManager.refresh(managedEntity);
return managedEntity;
}}
您遇到问题的原因是,在您的测试中,您的studentEntity已在事务之外传递(findOne),因此不再受管理。当它被传递到新事务(刷新)时,它不被管理,因此抛出此错误。
或者,如果原始刷新是所需的行为,则可以将整个测试包装在事务中,这应该维护测试对象的管理。
答案 1 :(得分:0)
实际上这是一个查询问题。该查询正在生成内部联接,因此返回空列表,因此它抛出异常。我更改了映射,以便它可以生成外连接,而不是返回一行,它是成功的。
答案 2 :(得分:0)
尝试在合并前使用合并。
public void refresh(T entity) {
this.entityManager.refresh(this.entityManager.merge(entity));
}