Tagged Questions
0
votes
1answer
33 views
How can I get transaction rollbacked and object's initial state retored
I'm not sure if this is correct, but I need that after a transaction is rollbacked, my object returns the its initial state. I created a junit test and it's failing.
try {
...
3
votes
5answers
193 views
EntityManager from LocalContainerEntityManagerFactoryBean does not persist entities into the database
The problem is that the EntityManager injected with @PersistenceContext in a Spring managed bean does not persist the entities to the database. I have tried using @Transactional on the AddDao bean, ...
1
vote
0answers
44 views
JPA + JUnit. @OneToOne binding inside a transaction in
I use JUnit + Spring + JPA
I have two entities with @OneToOne relationship:
@Entity
public class Principal {
//...
@OneToOne
@JoinColumn(name = "user_id")
private User user;
//...
}
...
0
votes
2answers
57 views
Does a new transaction detach all previous entities?
Let's say we have the following piece of code:
@Entity
public class User {
@Id
private String name;
@OneToOne(cascade = CascadeType.ALL)
private Address address;
//getters and ...
1
vote
1answer
49 views
handling JPA transactions exceptions
I have 3 EJBs:
the first one is for persistence:
@Stateless
@TransactionAttribute(TransactionAttributeType.REQUIRED)
public class PersistenceService
{
@PersistenceContext(unitName="pc")
...
0
votes
1answer
96 views
Spring JPA Transaction
I am encountering some strange behavior in Spring managed transactions. This a Spring MVC app. I am binding entities directly to the Web tier. I load a persistent entity from the database for edit ...
0
votes
2answers
46 views
Using EJB transaction, when I insert a record in a main outer transaction, I can't find it in the inner transaction(Annotated by REQUIRES_NEW)
My goal is inserting a record into my database, then updating it in a new transaction.
I try it like this:
@PersistenceContext(unitName="Table")
private EntityManager manager;
@EJB
private ...
0
votes
2answers
149 views
spring hibernate manual commit
can somebody help for this?
currently i met some problems, i am using spring,jpa,hibernate.
here is the problem, when i try to save several objects, and then manually roll back as when solrj return ...
0
votes
2answers
104 views
Transaction required exception on execute update for JPQL update query
I get this error when I try to run this code.
Error:
javax.persistence.TransactionRequiredException: executeUpdate is not supported for a Query object obtained through non-transactional access of a ...
0
votes
0answers
73 views
Can I set different transaction isolation levels for my jpa queries in JPA
Can I set different transaction isolation levels for my jpa queries in JPA?
I understand that JPA/hibernate is by default configured to read_committed. I want to understand if in practical projects ...
0
votes
1answer
88 views
Transaction Required Exception in JPA Spring Hibernate App
I saw many posts in this forum regarding the Transaction required Exception. But none of them resolved the issue.
My question is:
In my scenerio, my application is working perfectly for some ...
0
votes
0answers
81 views
JPA insert fails after 400 (or so) inserts - transaction error
Update: It seems it's failing after one insert, #412, fails a not null constraint at the database level. The transaction is probably rolling itself back. Given this setup, is it possible to get a ...
0
votes
0answers
39 views
Using @TableGenerator with Non-JPA
Abstract
I'm using JPA with @TableGenerator for Ids.
I have to make a fine method for sharing the mechanism for JDBC or PHP.
Entity
@Entity
@Table(name = "T1")
public class T1 {
@Id
...
1
vote
0answers
117 views
Persist multiple objects with jpa and hibernate, resume on fail
I know that SO has a lot of posts about validating data when persisting objects through jpa/Hibernate. Most of the answers says that a read of data should be performed before the persist so that an ...
1
vote
1answer
130 views
IllegalArgumentException: Can not set UserTransaction field to ServerVMClientUserTransaction
I'm migrating an application from GlassFish 3.1 to JBoss 6.1.
This code worked wonderfully with GlassFish, but throws an ugly error with JBoss:
Custom annotation:
@Named
@ViewAccessScoped
...
0
votes
0answers
172 views
Spring/JPA/Hibernate transaction management issues
Using:
Spring 3.1.2
Spring Data JPA 1.1.0.RELEASE
Hibernate 4.1.6
RESTEasy 2.3.5
I'm building a RESTful webservices platform talking to an Oracle database. Right now we're working on a Subscriber ...
1
vote
0answers
41 views
JPA Transaction scope
I am having a container-managed transaction and three Enterprise Java Beans. The first bean is a link between other two EJBS:
@Stateful
public class UserManagement
{
@EJB
UsersFacade ...
0
votes
1answer
264 views
Using Transactions and Facade in JPA 2
I am creating a Java EE web application which will operate on a database using JPA 2 EclipseLink. I am also using the application-managed Entity Managers so I could manually setup transactions, ...
0
votes
3answers
188 views
Spring + JPA transaction is created and commited but no result in db
I've read many threads complaining to similar issue but none of them help me in my case. Anyway, the problem is that I have written a few classes:
Person entity:
@Entity
@Table(name="person")
public ...
1
vote
1answer
43 views
How to create a new transaction when @NoTransaction is used?
@NoTransaction
public static void myAction() {
// Can I do anything here to start a transaction myself?
}
One workaround I thought about is creating a job. Is there another?
0
votes
1answer
144 views
playframework manual jpa transactions inside the Jobs
I have read this:
And my question is:
If I want to manage my transactions manually in the Job, what should I do?
Now I have a code and use there "@NoTransaction" like was explained in the post ...
2
votes
1answer
170 views
EJB - Using an EntityManager - Can finding an entity cause an OptimisticLockException
Unfortunately I'm getting an OptimisticLockException in my code and I'm not sure why. Perhaps there is someone who can help me with an answer to a general question.
Following scenario:
@Entity
...
0
votes
1answer
61 views
How do I make a service method that invokes another service method transactional?
I'm using Spring 3.1.1.RELEASE, Hibernate 4.1.0.Final, JPA 2.0, and MySQL 5.5 I define transactions within my Spring application context file like so:
<jee:jndi-lookup ...
1
vote
1answer
403 views
JPA @Transaction
It seems to me that the common way of starting / stopping a transaction with Spring JPA is to annotate a public function with @Transactional
What I am not able to figure out is if it is possible to ...
1
vote
1answer
138 views
JTA not rolling back when deleting cascade fails
Using: Glassfish 3.1.2, EclipseLink.
I have the following three-classes JPA model:
@Entity public class Customer implements Serializable {
@Id private Integer id;
...
0
votes
0answers
27 views
Little bit of advice about transactions
I've created a project using Seam 2.2.0. I'm also using JPA with hibernate.
I've separated my application in some layers.
1)View(richfaces)
2)the backing beans as Controllers.
3)DAO objects that to ...
0
votes
0answers
100 views
“Last Resource Commit” with Spring JpaTransactionManager and HibernateTransactionManager?
we have the following setup (for historical reasons)
1. Webapp (Tomcat) Request
2. -> ServiceFacade
3. -> some service(s) that use *.hbm.xml files (tx via HibernateTransactionManager)
...
0
votes
2answers
88 views
Transactional Control from an EJB
I'm fairly new to JavaEE/JPA and I've encontered the following need in my project, a need that I've searched for a while how to achieve, but without success so far, so I was hoping any of you could ...
1
vote
2answers
109 views
DataSource configuration to exclude deadlocks on REQUIRES_NEW methods
While stress testing my JPA based DAO layer (Running 500 simultanious updates at the same time each in a separate thread). I encountered following - system always stuck unable to make any progress.
...
0
votes
1answer
106 views
Jpa save entity after failed delete
I am trying to remove an entity and if it cannot be removed because of a constraint I want to mark it for logical removal.
This is my code:
@Transactional
public void removeEntity(EntityDto e) {
...
0
votes
1answer
1k views
JPA RollbackException persist transaction causes subsequent valid transactions to fail?
I have a @Transactional service performing a persist action into an oracle DB. If i run a persist breaking a unique violation i get the expected rollbackException:ConstraintException.
The problem is ...
3
votes
1answer
362 views
JPA and optimistic locking modes
I read an article on the blog of Oracle here about JPA and locking modes.
I don't understand well the difference between OPTIMISTIC and OPTIMISTIC_FORCE_INCREMENT lock mode types.
OPTIMISTIC mode :
...
2
votes
1answer
579 views
JPA and default locking mode
With JPA, we can use manually OPTIMISTIC or PESSIMISTIC locking to handle entity changes in transactions.
I wonder how JPA handles locking if we don't specify one of these 2 modes ?
No locking mode ...
0
votes
1answer
209 views
Java, JPA, bean managed transactions, TransactionRequiredException
I have two stateless EJB.
One uses container managed transactions, another - bean managed. From container managed EJB I call a method of bean managed EJB.
public class firstEJB{
public void ...
0
votes
2answers
1k views
JTA controlled transactions in JBoss AS7 using EclipseLink, Transaction is required
Environment
Application server: JBoss AS7 (7.1.1 Final)
JPA implementation: EclipseLink (2.4.1)
OS: Windows 7 DB: PostgreSQL 8.4
Update 2, solved
The problem was that i instantiated the ...
1
vote
2answers
673 views
Use JTA transaction with EJB and JPA
Hello everybody i'm looking for some help with the next problem:
i have a jpa/stateless ejb's proyect that works perfectly, it just does simple queries and persist operations, but now i need to ...
0
votes
1answer
71 views
Transactional behavior when acquiring jdbc connection from EntityManager
In the process of porting some C++ code to Java I'm in the need of calling a stored procedure with in/out parameters.
As I cannot change this procedure (e.g. to work with hibernate and ...
1
vote
4answers
2k views
How do I set flush mode to “COMMIT” in my configuration files?
I'm using Spring 3.1.1.RELEASE, Hibernate 4.1.0.Final, and JPA 2.0. Is there a way I can configure Spring transactions to commit after the transactions are executed without Java code? In other ...
0
votes
1answer
181 views
Two JPA EntityManagers within Spring managed transactions?
I'm using Spring's transaction support and JPA (Hibernate) to persist my entities. Everything's working as it should, but I'm stuck when dealing with partial updates within one request:
For every ...
1
vote
1answer
292 views
TransactionRolledbackLocalException Client's transaction aborted when accessing @Singleton
NOTE: Adding this question in short form with an answer after spending far more time than I'd like to admit on finding the cause. Hopefully I'll save someone else some pain.
When delegating a method ...
1
vote
1answer
108 views
@Transactional doesn't perform commit
Please see my following code snippet.
@Transactional
public void saveMembersService(List<Member> list1, List<Member> list2)
{
saveMembersDAO(list1); // does not perform commit. Why?
...
0
votes
4answers
255 views
Commit during transaction in @Transactional
Is that possible to perform commit in the method that is marked as Spring's @Transactional?
@PersistenceContext
private EntityManager em;
@Transactional(propagation = Propagation.REQUIRED)
public ...
0
votes
2answers
227 views
Retrieving more error information for Spring JPA Transaction Exception
We are running into some odd behavior and inconsistencies with our transactions when we attempt to save objects and sub-objects. Unfortunately, the error that is being returned to us is not helping us ...
0
votes
1answer
174 views
Wicket with JPA and container managed transactions (CMT)
Moving from JSF to Wicket I continue my habits of having all JPA operations in a EJB facade use the container's transaction management. I use and know wicket-cdi for injection, which works fine.
...
1
vote
0answers
255 views
Container-managed transactions and Java persistence API
I have some questions regarding container-managed transactions in JPA. For example, I have JSF page with managed bean, which calls a session bean's method:
@ManagedBean
@RequestScoped
public class ...
-2
votes
2answers
307 views
How to lock database records in a Java EE application?
I want to write a Java EE web application where different users work with a database. A user can start editing a record, and then either save changes or cancel editing. While the user is editing, the ...
1
vote
1answer
991 views
Handling LockModeType in Optimistic locking with spring + JPA
I have searched through the posts in stackoverflow and I hope this is not a duplicate.
I am trying my hands on Optimistic locking for the first time, I am able to do it with spring managed ...
0
votes
2answers
242 views
JPA insert transaction concurrency
I have more of theoretical question:
When data gets inserted into a database? is it after persist or after commit is called? Because I have a problem with unique keys (manually generated) - they get ...
1
vote
1answer
175 views
IDLE in transaction when using entity manager flush
We are using hiberante,c3p0, postgresql for the persistent layer.
While running data intensive jobs, mostly select/insert, one of the developers decided to use entityManager.flush() before commit , ...
2
votes
2answers
222 views
EntityManager unwanted background commit
I have a strange problem on one of my glassfish server. Have a look on this piece of code:
userTransaction.begin();
MyEntity entity = new MyEntity(12345);
//setting values..
...
