データベースにデータを挿入しようとしています。プロジェクトでJPAを使用しています。
これが私のBeanの外観です。
@PersistenceContext
EntityManager em;
em.createNativeQuery("INSERT INTO testtable ('column1','column2') VALUES ('test1','test2')").executeUpdate();
myfacade:
@Stateless
public class TestFacade extends AbstractFacade<Test> {
@PersistenceContext(unitName = "TEST2PU")
private EntityManager em;
@Override
protected EntityManager getEntityManager() {
return em;
}
public TestFacade() {
super(Test.class);
}
エラーが発生します:
javax.persistence.TransactionRequiredException: executeUpdate is not supported for a Query object obtained through non-transactional access of a container-managed transactional EntityManager
@PersistenceContext for EntityManager
を使用しない場合
EntityManagerFactory emf = Persistence.createEntityManagerFactory("TEST2PU");
EntityManager em = emf.createEntityManager();
em.createNativeQuery("INSERT INTO testtable ('column1','column2') VALUES ('test1','test2')").executeUpdate();
これは私のエラーです:
javax.persistence.TransactionRequiredException:
Exception Description: No externally managed transaction is currently active for this thread
注:これにはネイティブクエリを使用する必要があります。
NativeQueryとそのexecuteUpdateメソッドを使用して実行できます。
String query = "insert into Employee values(1,?)";
em.createNativeQuery(query)
.setParameter(1, "Tom")
.executeUpdate();
同じ問題がありました。これが解決策です。
EntityManager em = getEntityManager();
EntityTransaction et = em.getTransaction();
et.begin();
em.createNativeQuery("UPDATE ... ;").executeUpdate();
et.commit();
コンテナ管理のentityManager
を使用していると仮定します(@PersistenceContext
)@Transactionnal
TestFacadeメソッドの上の注釈。
String message = "";
try
{
EntityManager em = emf.createEntityManager();
if (objUser.getId() <= 0)
{
em.getTransaction().begin();
em.createNativeQuery("INSERT INTO userinfo ( login, upassword, email, mobile, fax, dob)"
+ " VALUES ( :a, :b, :c, :d, :e, :f)")
.setParameter("a", objUser.getLogin())
.setParameter("b", objUser.getUpassword())
.setParameter("c", objUser.getEmail())
.setParameter("d", objUser.getMobile())
.setParameter("e", objUser.getFax())
.setParameter("f", objUser.getDob()).executeUpdate();
em.getTransaction().commit();
em.close();
message = "Success";
}
} catch (HibernateException ex)
{
message = ex.getMessage();
}