JBoss の JTA データソースで Vaadin JPAContainer を使用しようとしましたが、FieldGroup をコミットするときに「トランザクションが進行中でありません」というエラーが発生し続けます。
ここに私のpersistence.xmlがあります
<persistence 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"
version="2.0">
<persistence-unit name="Pagamento">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>java:jboss/datasources/Pagamento</jta-data-source>
<class>br.com.edu.entidades.Usuario</class>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect"></property>
<property name="hibernate.cache.use_second_level_cache" value="false"></property>
<property name="hibernate.hbm2ddl.auto" value="update"></property>
<property name="hibernate.show_sql" value="false"></property>
<property name="hibernate.format_sql" value="true"></property>
</properties>
</persistence-unit>
</persistence>
JTA をサポートするために、カスタム EntityProvider も使用しています。
public class EduEntityProvider extends MutableLocalEntityProvider<Usuario> {
private EntityManager em = HibernateUtils.entityManager;
public EduEntityProvider() {
super(Usuario.class);
setEntityManager(em);
setEntitiesDetached(false);
setTransactionsHandledByProvider(false);
}
@Override
@TransactionAttribute(TransactionAttributeType.REQUIRED)
protected void runInTransaction(Runnable operation) {
super.runInTransaction(operation);
}
}
エンティティ:
@SuppressWarnings("serial")
@Entity
@Table(name="usuario")
public class Usuario extends EduPersistentEntity {
@Id
@Column(name="id")
@VisivelTabela(false)
private String id;
@Column(name="nome")
private String nome;
@Column(name="email")
private String email;
@Column(name="senha")
private String senha;
@Column(name="matricula", unique=true)
private String matricula;
gets...
sets...
}
プロバイダーによって処理されるトランザクションを true に設定した場合
"setTransactionsHandledByProvider(false);", i'll get the error
" A JTA EntityManager cannot use getTransaction()".
誰かが私に実際の例を教えてくれたり、私が間違っていることについてヒントをくれたりしたら、大歓迎です。