Tagged Questions
1
vote
0answers
8 views
Weblogic Transaction Behavior
I'm working on an older EJB 2 application.
In the ejb-jar.xml, I see:
<container-transaction>
<method><ejb-name><method-name>someMethod...
...
0
votes
0answers
29 views
Spring's Transaction manager not committing trancsactions intermittently
I am using spring 3.0.5 + hibernate with declarative transaction management in one of our components and everything seems to be working fine. But intermittently it so happens that one of the ...
0
votes
2answers
56 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 ...
0
votes
2answers
58 views
Working with Transaction Types in EJB
I have the following example:
public class MyEJBService implements javax.ejb.SessionBean {
public void modifyAllItems() {
doSomething...
for(...)
{
...
1
vote
0answers
36 views
CDI event originator's transaction waits for Observer(AFTER_SUCCESS) transaction?
I have the following scenario: (pesudo-code)
CallerObject.method() {
SessionBean1.method1(); // through remote bean interface
// [1]
}
@TransactionAttribute(REQUIRED)
...
0
votes
1answer
48 views
Declarative transaction management in EJB
I know that the questions which refer to a link are not the favorite ones to the users of this great site, but I could not set my question in a different way. I am trying to delve into EJB and CDI and ...
0
votes
2answers
45 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
0answers
40 views
TransactionAttributeType SUPPORTED | NOT SUPPORTED
Recently I stumbled upon code that declared NOT_SUPPORTED as transaction attribute type. I started to wonder what the actual semantics/benefits/implications are.
I found this article on which I ...
0
votes
1answer
72 views
How can I get transaction event(commit, rollback)
I created a CMT based EJB. The EJB inserts a record into the database and then it executes another code(A) asynchronously. The ejb continues it's processing so the transaction can be committed or ...
1
vote
2answers
169 views
Top performance problems in Jboss AS 7 [closed]
I've taken part in a project where we have recently changed the application server to Jboss AS 7 (EAP 6). The system is a Jboss installation running in Domain Mode with one server (Server A) ...
0
votes
1answer
239 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, ...
1
vote
2answers
44 views
Want to declare block of code that uses a few EJBs to be transactional
I have a function that makes use of a couple of EJB facades that create some information in the database. This block of data creation calls should be atomic, if one fails, nothing should be committed. ...
0
votes
0answers
18 views
When are transactions propagated from the client to the EJB?
I'm reading Enterprise JavaBeans 3.1, and now that I finished the Transactions chapter I still have a doubt.
The author says a lot about transactions and the fact that they propagate from the client ...
1
vote
2answers
26 views
CMT Transactions (REDUX)
Have to bother you again ... (see: CMT Transactions) Presumed the following:
All TransactionAttributes set per default to REQUIRED
Question: Why is the find method able to retrieve foo even if the ...
2
votes
1answer
166 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
...
1
vote
1answer
139 views
EJB 3.0 - Sequence of transactionally independent EJB calls with CMT
There is an MDB and a sequence of stateless EJBs to do some work with message (WAS 7.0, Java EE 5, EJB 3.0, JPA).
Sequence (using CMT):
MDB accepts message
MDB persists entity with the message ...
0
votes
0answers
33 views
Jboss CMT - add custom logic after transaction ends
How to wrap logic after the CMTTxInterceptor-endTransaction().
I want to clear the APP specific transaction context after transaction ends.
I use jboss7 and CMT.
1
vote
1answer
134 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;
...
1
vote
2answers
265 views
Rollback transaction inside managed bean
I would like to rollback transaction not inside EJB but inside JSF managed bean. Inside EJB we can use SessionContext.setRollBackOnly() but what can I use in managed bean ?
@Stateless
...
0
votes
2answers
87 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 ...
0
votes
0answers
102 views
Hibernate session closes inside EJB - Websphere 7
Hibernate session is automatically closed before the Container Managed Transaction is closed!
I have this strange issue while using Hibernate + EJB 2.1 in WebSphere 7.
Hibernate settings are:
...
2
votes
0answers
88 views
EJB 3 Transactions Service Facade
I'm trying to implement the Service Facade Pattern,
I have some jars that are deploying in differents OAS“s containers, inside the jars there are Stateless EJBs 3.0 that have some methods that are ...
0
votes
1answer
205 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 ...
1
vote
2answers
639 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
173 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
2answers
260 views
Understanding EJB transactions types
I have some behaviour in my application that I can't understand. I have 1 stateful bean, 1 stateless bean and I want to call from SFB 1 method of SLB (parsing of WEB pages). It's OK but SLB calls ...
1
vote
1answer
275 views
How to rollback transactions and continue processing updates?
I'm trying to wrap my head around transaction management, but I'm having a hard time figuring out how I should recover from a transaction rollback and continue committing new transactions. The code ...
0
votes
0answers
195 views
MySQL Connection not closing using connection pooling and container managed transaction in GlassFish
I am using EclipseLink 2.3.2, GlassFish 3.1, and MySQL 5.1. I have a simple EJB with the following snippet of code:
@PersistenceContext(unitName = "UpdatesPersistence")
private EntityManager em;
...
0
votes
0answers
252 views
Managing JDBC transaction inside EJB container transaction
I have an EJB, which has @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW). Inside EJB I have a logger, which has been configured to log into a database using JNDI appender and JDBC:
...
2
votes
3answers
160 views
Logging success of transaction from EJB
I'd like to log the error or the success of an EJB method that is participating in a transaction. Where shall I put the logging? As far as I know the transaction will be committed after my doSomething ...
2
votes
2answers
478 views
Nested transaction behaviour in EJB
Today I discovered some unexpected behaviour in EJB. I've got MDB with default transaction attribute (REQUIRED) and SLSB with transaction attribute set to REQUIRES_NEW. My MDB calls the SLSB and catch ...
1
vote
0answers
121 views
EJB,Hibernate and spring transaction
I've a question regarding the use of the transaction manager in a context with EJB, Spring and Hibernate.
In our project we have an EJB stateless marked with the annotation ...
0
votes
0answers
197 views
JPA rollback does not work
Technologies: EJB 3.1, JSF, JBoss 7.1.1
There are Servise-classes (@SessionScoped @Stateful). Servise-classes call Dao classes (@Stateless)
I want :
use EntityManager only into @StateLess beans ...
0
votes
2answers
199 views
EJB 3.1 Transaction propagation
I have 3 EJB stateless beans.
A - on business layer.
B, C - of persistence layer.
Bean A calls B and C to update some data in database (DB2).
But unfortunatly, on calling bean C, database locks.
Is ...
0
votes
1answer
222 views
Data from DB are not up to date (EJB 3.1, HibernatePersistence)
Technologies:
EJB 3.1, JSF, JBoss 7.1.1
There is the project with working CRUD.
Problem:
In one browser the table with list of entities is opened.
In another is too. Each table are up to date.
...
0
votes
1answer
304 views
ejb3 isolated (autonomous) transaction inside session bean
I'm using XA (2-phase) transaction. I want to log to one log-table through Log class and Entity Manager. My method inside EJB Session bean looks like:
private void logError(Throwable throwable) {
...
0
votes
3answers
655 views
Why doesn't Hibernate writes changes when using UserTransaction in Servlet?
With Hibernate:
@PersistenceUnit(unitName = "oracle")
private EntityManagerFactory emf;
@Resource
private UserTransaction u;
protected void doGet(HttpServletRequest request, HttpServletResponse ...
0
votes
2answers
528 views
Transaction aware objects in stateless EJB
I'm little confused how transactions work in EJBs. I've always thought that all transaction aware objects in container managed EJBs are all committed or rollbacked when a method with ...
2
votes
2answers
444 views
JSF2 + EJB3 + CRUD with an user control to commit or rollback?
I'm developping a Java EE application based on JSF2 and Glassfish 3.1. The application has to provide CRUD operations on a database table. The database table data are shown using a primeface dataTable ...
0
votes
1answer
472 views
EJB @Asynchronous - Transaction is not active after few minutes executing
I've a async method in my singleton session bean, which after a few minutes executing, is thrown the following exception after finalize a method of another transaction:
Caused by: ...
0
votes
1answer
328 views
EJB Singleton - “Transaction is not active” after the thread is finished
I've the following case:
When the asynchronous processing of the thread is finished, an exception is thrown at line 15 with the following message: Transactions is not active.
Notice that I set the ...
2
votes
1answer
2k views
EJB 3.1 TransactionAttributeType.REQUIRES_NEW and setRollbackOnly
Please help me understand something about transactions in EJB 3.1. I'm using GlassFish v3 and have the following situation:
@Stateless
@LocalBean
public class BeanA {
@Inject BeanB bean; /* ...
4
votes
1answer
346 views
Can a transaction be propagated between EJBs from different applications in Weblogic?
We're developing a system that have two main logics; One's a management logic, which is very light; and the other is a processing logic, which is very resource (RAM + CPU) consuming.
We decided to ...
0
votes
1answer
151 views
EJB 3 transaction propagation and UnboundId LDAP SDK
Currently I work with EBJ 3 and have to make bean, that have to perform big business operation, that consist of persisting data to DB, sending some JMS messages and persisting some other data to LDAP. ...
0
votes
1answer
1k views
BMT EJB How to use the UserTransaction
I'm trying to create an example of BMT EJB and control the transaction manualy but when try to run I got an NullException and I don't kno what I'm doing wrong.
Here is the code:
@Stateless
...
2
votes
1answer
614 views
Transaction not active exception - EJB Transaction State
I am having a problem with EJB components that are responsible for starting a transaction.
I am using Jboss 5.01.
Basically I would like to execute a given code after a specific transaction was ...
0
votes
1answer
936 views
Handling TransactionTimeout Exception in EJB
I have an EJB method called methodA() calling another EJB method called methodB() which starts a new container managed transaction. in methodB, I am forcing a transaction timeout which is rightly ...
3
votes
3answers
2k views
EJB JPA transactions
I am using JSF 2.1, EJB 3.1, JPA 2.0, Glassfish 3.1.1 and NetBeans 7.0.1.
For each entity class I created a separate Facade class, for example, UserFacade and AddressFacade using NetBeans tools. ...
3
votes
3answers
355 views
Retrieve Entities throught stateless local EJB from statefull EJB (Long conversation using session-per-conversation)
First, I have a stateless bean which do a simple retreive, looking like this.
@Stateless
@LocalBean
public A {
@PersistenceContext
private EntityManager em;
public MyEntity ...
0
votes
2answers
919 views
Glassfish: JTA/JPA transaction not rolling back
I am running Glassfish 3.1.1 with an Oracle database and have run into an issue with transactions not rolling back, but only on one specific environment so far. The same application works as expected ...