The transactional tag has no wiki summary.
1
vote
1answer
15 views
JPATransactionManager and annotation driven transactions
I've a small spring3/Hibernate JPA application running and I've come a cropper when trying to use Transactional annotations. Basically they are being ignored by the TransactionManager.
I have a save ...
0
votes
0answers
26 views
Quartz + Guice seems that transacations are skiped
I'am using Quartz Scheduler in my Guice application, for some very simple job which should call some web service, and based on the response update rows in the database. The problem I have here is that ...
0
votes
2answers
24 views
Spring Hibernate : Generic Dao addition causes - org.hibernate.TransactionException: nested transactions not supported
I have a layered architecture in my project.
in order to prevent redundancy i created a very basic generic dao:
public interface GenericDAO {
public <T> T getItemById(long id, ...
1
vote
2answers
39 views
Hibernate transactional method call within transactional method rollback
I am trying to create a transactional method which calls several other transactional methods in order to save some interdependent db entities. I want the transaction to rollback completely if any ...
0
votes
2answers
40 views
Spring data @Transactional not roll back
I develops my first application using Spring MVC and Spring JPA. I get a problem when using @Transactional annotation. I annotate one of my service methods with @Transactional and I throw exception in ...
0
votes
1answer
112 views
Spring batch usage or how to launch Jobs within a Job
TL;DR: How should one create Spring Batch Jobs using Spring Batch Job?
Transaction boundaries seem to be the problem. This seems to be a
classic question but here it goes again:
I have following use ...
1
vote
1answer
61 views
@Transactional on Spring shutdown to properly shutdown Hsqldb
The heart of this question is: Is it possible to execute a Transaction from a method triggered by a Spring shutdown hook?
At the moment I have a HyperSqlDbServer class that implements SmartLifeCycle ...
0
votes
1answer
35 views
Rollback with catched RuntimeException
I clearly need some help about transaction roll back. I'm working on a Spring/JPA/Hibernate application.
For me, RuntimeException even if they are catched, are rolling back the transaction. I deduce ...
0
votes
1answer
38 views
Magento : Transactional email’s design getting distracted in outlook
I have created one transactional email.
Its design is getting distracted in Outlook express.
Can anybody suggest what’s going wrong ?
Thanks in advance.
1
vote
0answers
111 views
Play [2.11] jpa transaction
I am trying the play framework with JPA hibernate, looks only can put the @Transactional on the controller class.
I plan to create another layer Service might be used for WS or mobile client. I want ...
0
votes
2answers
53 views
TransactionRequiredException in spring webmvc framework
It's many similar, but not the same issues, so I couldn't find a solution for this one.
I have Spring + JPA(Hibernate) web-application.
Context configuration (data-context.xml):
<?xml ...
3
votes
2answers
126 views
For web MVC Spring app should @Transactional go on controller or service?
For WebApplicationContext, should I put @Transactional annotations in the controller or in services? The Spring docs have me a bit confused.
Here is my web.xml:
<?xml version="1.0" ...
0
votes
0answers
95 views
Spring @Transactional not creating transactions
I am seriously beating my head against a wall with Spring transactions. I have searched for days trying to get @Transactional to work. Any help would GREATLY appreciated!
I am using Spring 3.2 for ...
0
votes
0answers
85 views
SpringFramework jdbc error while connecting to read only oracle database
Hi I just encountered this exception while connecting to a read only oracle database.
01 Mar 2013 14:40:13,375 ERROR ReportController.getReportCycle:260 - Error Ouccured While Validation ...
0
votes
1answer
168 views
How do I make a service method in liferay transactional without service builder
I have a utility service called NotificationService. It follows along the lines of MailService in that the service layer has the NotificationService interface (defining the service), and ...
1
vote
1answer
124 views
Exception on automatic flush at the end of a transaction
I'm filling a database with entries that should be replaced if they are already present. To do this, first I check if the entry is already present with a find (which is wrapped in a read only ...
0
votes
2answers
81 views
OpentransactionPerView instead @Transactional
I have a Java EE Application with Spring 3.1.1 and Hibernate 4.1. Now I wanted to speed up things and saw that the bottleneck is the opening + closing of multiple transactions in one request.
Now I ...
1
vote
2answers
601 views
Spring-JPA: updating parent Entity fails to persist new child Entities, interpreting them as Transient instead
I'm new to Spring/JPA/Hibernate, and while it sounds easy reality just hasn't been. I could use some help.
I have a parent Entity that holds a list of child Entities. I'll use these to keep the ...
2
votes
1answer
61 views
Centralized rollback-for using @transactional
Is it possible to tell spring to rollback for expection MyException as well as RuntimeException in the xml configuration while using @transactional.
I know it is possible to set the rollback for in ...
0
votes
0answers
88 views
MSMQ best practice for cross domain communication between wcf services
What is the appropriate configuration for cross domain communication between WCF services using MSMQ?
I have tried calling from one server to another using netMsmqBinding on a transactional queue on ...
0
votes
4answers
86 views
Spring @Transactional usage on wrapper method
Do I need to add @Transactional annotation to second method? I think not, but really not sure.
@Transactional
public void addUser(User u) {
u.setCreationDate(new Date());
userDAO.addUser(u);
...
0
votes
2answers
35 views
Convert basket to single [duplicate]
I currently have a table set up in a basket format so that an irregular amount of data is associated with each row of the table. Such as:
01,item1,item2,item3
02,item1,item2,
...
0
votes
1answer
171 views
Hibernate Many-to-Many mapping: Add entries doesn't work
Hallo I have a problem with a many-to-many mapping in Hibernate.
The tables shown above, are connected with a many-to-many mapping. The table tbl_cp_group_relation is the table with the n:m ...
1
vote
1answer
371 views
Issue with @Transactional annotations in Spring JPA
I have a doubt related to transactions within transactions. For background, I have a School entity object which has Set of Students entity object mapped to it. I am using Spring Data JPA which is ...
1
vote
1answer
33 views
CMT transactions
One more question from my side ...
If I have a stateless service (Stateless Session Bean) as facade (say GlobalService) which methods invokes several other services (again SLSBs, say FooService and ...
1
vote
1answer
122 views
Transaction management spring 3 - hibernate 3.5
I'm using spring 3 with hibernate 3.5.4
1- I want to create an object in transaction and save it to DB ( which passes successfully ).
2- I want to update some fields in that object (same object) and ...
2
votes
1answer
282 views
Inventory Management Table Structure
Our team needs to track inventory for essentially an in-house created ERP system. We will need to frequently access the amount of inventory in the system for a given item at a given warehouse and ...
2
votes
1answer
120 views
Spring @Transactional and inheritence
I do have a generics-based DAO class, which is base for all other DAO clases in my project and contains common functionality:
public class Dao<E> {
private SessionFactory factory;
...
1
vote
1answer
564 views
Magento bundle products: child option sort order issue
I'm having an issue wherein a Bundled Product's child option/products are not sorting correctly in transactional emails.
The sort order is important, in this case, because the product model is one ...
0
votes
2answers
250 views
Hibernate ConstraintViolationException on SELECT query
I have a Persistent Class with multi-field unique constraint on it. But defined unique constraint is not sufficient for me because on one those field non-equal but similar values are unique too.
I ...
0
votes
0answers
144 views
How to cofigure Spring Jta Transaction?
Can somebody Help me with this error?
Or specific sample code for how to use JTA Transactionmanager?
I'm Using multi Databases, Main Database is defined in Xml with Transactionmanager,
and rest DB ...
0
votes
1answer
89 views
How to use Spring Transaction when using GenericApplicationContext
When using Distributed Mysql Database, I've Created multiple dataSources, sessionFactory using BeanDefinitionBuilder
But transactional annotation doesn't seem to work when I execute Insert SQL
using ...
0
votes
1answer
133 views
java - Insert fail when using Spring, hibernate and JPA with JBOSS 7.1 server
I'm trying to set up the hibernate + JPA on my project. but when I try to do an insert nothing happens, I go into the source code of hibernate jars and I see that hibernate it's recognizing my entity ...
1
vote
1answer
303 views
How do I inject mocks into a Spring class marked as “@Transactional”?
I'm using SPring 3.1.1.RELEASE and JUnit 4.8.1. In my test class, I want to mock a private field and discovered the beauty of "ReflectionTestUtils" ...
@RunWith(SpringJUnit4ClassRunner.class)
...
2
votes
0answers
191 views
SQL Server 2008 transactional replication 'Missing end comment mark '*/''
I'm trying to set up transactional replication on a Dynamics NAV database on SQL Server 2008 R2 SP1.
Using the same servers I have been able to set up replication successfully on a different DB.
I'm ...
1
vote
1answer
187 views
No rollback for ConstraintViolationException in transactional service
I've a service method called add() which is annotated with @Transactional,
I call it but when a ConstraintViolationException occurs inside corresponding
dao method it'll rollback the transaction even ...
1
vote
1answer
41 views
Transactions on Data within Instances?
I have a class with lots of data in it which allows some complex operations on the data within the class. The class also has some member functions which allow retrieving some data, i.e. to retrieve ...
0
votes
0answers
197 views
Suitability of gmail for sending transactional email through ASP.NET C# web application
I was not sure what StackExchange site to put this under, but as it is (sort of) related to programming I am posting it in here.
I am developing a web application which will send a maximum of around ...
0
votes
0answers
67 views
Hibernate + Resteasy + Blobstream
i'm using resteasy and saving blobs with hibernate
i've configured the open session in view
my rest-handler is non-transactional, my service which retrieves the java.sql.blobs is transactional.
The ...
0
votes
2answers
146 views
Spring Transaction with AspectJ
I'm having a problem with @Transaction in Spring.
Basically, no transaction is created with the following message:
delaying identity-insert due to no transaction in progress
I posetd a full ...
1
vote
0answers
46 views
Alternatives to using Transactional NTFS
Given that Microsoft has deprecated Transactional NTFS (TxF):
Microsoft strongly recommends developers utilize alternative means to achieve your application’s needs. Many scenarios that TxF was ...
0
votes
0answers
88 views
magento transactional emails using ext_order_id
I am using the following snippet in my custom transactional email template (created by System -> Transactional Emails) for new orders placed:
<h2 style="font-size:16px; font-weight:normal; ...
0
votes
0answers
113 views
@Repository not working with @Transactional in Spring 3
I have a DAO class which is annotated with both @Repository and @Transactional. When I have both on the class it doesn't get picked up by the application context. However, when I remove the ...
0
votes
0answers
309 views
Rollback of transactional Spring test on RuntimeException conflicts with @Rollback(false)
I'm facing a problem with rollback and transactions that I couldn't find in the web.
I have a service, with an insert method marked as @Transactional, which simply inserts into an Oracle DB a list of ...
1
vote
1answer
815 views
Magento: Send Custom Transactional Email in Custom Observer
I'm trying send a email when admin cancel a order manually. I'm using the order_cancel_after event and my observer method run fine.
But my email is not fired. I get the following exception (above), ...
0
votes
4answers
247 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
171 views
EntityManger refresh after JPQL bulk DELETE?
After executing the following operation in my Seam/Glassfish/JPA container:
@ApplicationScoped
public class JpaGlossaryDataAccessObject implements IGlossaryDataAccessObject {
// ...
...
0
votes
0answers
148 views
Transactional annotation avoids services being mocked
I have a drools rule file which uses service classes in the rules. So one rule does something like this:
eval(countryService.getCountryById(1) != null)
In a validationservice that is annotated with ...
2
votes
2answers
209 views
Spring @Transactional(readOnly=true) revert the properties?
Just a simple Question with a Car-entity persisted field color of value red:
00 @Transactional public class MyBean{...
01 public void test(){
02 Car c = s.find(Car.class,1);
03 ...
0
votes
1answer
126 views
Just what is a high transactional database
silly question I know, but what is the definition of high transaction database? how many transactions per second constitutes a high, medium and low transactional database?
