Как я могу заставить JPA (через Hibernate) / Spring и мое управляемое соединение с контейнером (через Glassfish 3.1) нормально играть?
Обновление : каким-то образом мое JPA-соединение похоже буферизуется,Если я изменяю запись так, что я преобразую ее строки в верхний регистр, то, если я смотрю ее, я получаю запись со строками в верхнем регистре.Но базовая БД не отражает это.Другой пример, если я удаляю сущность, а затем пытаюсь удалить ее снова, я получаю исключение "java.lang.IllegalArgumentException: org.hibernate.ObjectDeletedException: удаленный экземпляр, переданный для слияния: [db.co05in.Test #]", но снова базовыйБД не обновляется.
Включено:
- Код входа, показывающий впрыск пружины TestService
- TestServiceImpl
- applicationContext.xml
- persistance.xml
Решено : Понятия не имею, почему, но проблема была вызвана проводкой по имени?В любом случае смотрите комментарии в разделе «Код реализации службы», если у вас возникла похожая проблема.
Код входа:
package com.aerose.partgroupmaster.action;
import com.aerose.mz.db.service.inventory.TestService;
public class DeleteTest{
public com.aerose.mz.db.co05in.Test test; //the POJO JPA DAO
public int id;
private TestService testService;
//GOOD: spring is able to inject the service
public void setTestService(TestService testService){
this.testService = testService;
}
@Override
public String execute() {
test = testService.retreiveTest(id);
testService.deleteTest(test);
return SUCCESS;
}
}
Код реализации службы:
package com.aerose.mz.db.service.inventory;
import db.co05in.Test;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Query;
import org.springframework.transaction.annotation.Transactional;
public class TestImpl implements TestService{
@PersistenceContext //needed to add this
private EntityManager em;
//removed this... and edited applicationContext.xml to remove the wiring
//public void setEntityManagerFactory(EntityManagerFactory entityManagerFactory){
// this.em = entityManagerFactory.createEntityManager();
//}
@Transactional
@Override
public void createTest(Test test) {
em.persist(test);
}
@Transactional
@Override
public Test retreiveTest(int id) {
Query query = em.createNamedQuery("Test.findByIdTEST");
query.setParameter("idTEST", id);
return (Test) query.getResultList().get(0);
}
@Transactional
@Override
public Test updateTest(Test test) {
Test test2 = em.merge(test);
return test2;
}
@Transactional
@Override
public void deleteTest(Test test) {
em.remove(em.merge(test));
}
}
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:jee="http://www.springframework.org/schema/jee"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/jdbc
http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-3.0.xsd">
<context:annotation-config/>
<context:component-scan base-package="com.aerose" />
<tx:annotation-driven />
<jee:jndi-lookup id="dataSource" jndi-name="jdbc/MySQLLocalDataSource" />
<bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/>
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="co05in" />
</bean>
<bean id="transactionManager" class="org.springframework.transaction.jta.JtaTransactionManager"/>
<bean id="testService" class="com.aerose.mz.db.service.inventory.TestImpl">
<!-- following not needed -->
<!--<property name="entityManagerFactory" ref="entityManagerFactory"/>-->
</bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
</beans>
persistance.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="co05in" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>jdbc/MySQLLocalDataSource</jta-data-source>
<class>db.co05in.Test</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.SunONETransactionManagerLookup"/>
<property name="hibernate.transaction.factory_class" value="org.hibernate.transaction.JTATransactionFactory"/>
</properties>
</persistence-unit>
</persistence>