0
votes
0answers
10 views

Spring/Hibernate/Transaction synchronization issue

I have a service that returns a persisted Schedule object based on an input: date. I have multiple threads calling this method and I would like to ensure uniqueness. I don't want to catch a ...
0
votes
1answer
10 views

Java thread blocked at com.arjuna.ats.internal.arjuna.objectstore.FileSystemStore.createHierarchy

I run some load test in my Jboss application and when I launched JvisualVM to see what happen, I found a lot of blocked threads ( 150 over 400 threads ). So I done a Thread dump and all of this ...
0
votes
1answer
24 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 { ...
0
votes
0answers
17 views

What Jboss Transaction timeout is used for?

I have searched a lot to find the exact function of transaction*.xml files of Jboss but couldn't find any proper documentation/blog. I want to know what Transaction-timeout property is used for? Is ...
0
votes
0answers
12 views

Ehcache simple search/transaction example?

I'm trying to test the capabilities of ehcache and I believe I have it set up properly in the cache initialization which I learnt from the code samples and elsewhere online. However I haven't added ...
0
votes
1answer
32 views

Hibernate Session is closed in spring transaction after calling method second time

First of all I am a beginner in spring.I have created a simple Spring service that has DAO injected and transaction is managed by HibernateTransactionManager of spring, like as below.(And transaction ...
0
votes
0answers
18 views

How to make user managed transaction in jBoss

I'm using JBossV5 as my application server. It provides the connection for mysql and I'm using jdbc in my application. I want to manually commit transaction. I know it is not possible to use ...
1
vote
1answer
26 views

Spring recommendations: proxying mechanism vs @Transactional on class or interface

Spring doc has the two recommendations: Spring recommends that you only annotate concrete classes (and methods of concrete classes) with the @Transactional annotation, as opposed to annotating ...
2
votes
1answer
21 views

Spring @Transactional class vs method precedence rules

Spring says abuot @Transactional The most derived location takes precedence when evaluating the transactional settings for a method. Does this mean the annotation on method completely overrides ...
0
votes
1answer
42 views

Creating multiple transactions in a single hibernate session

I have created a Quartz Job which runs in background in my JBoss server and is responsible for updating some statistical data at regular interval (coupled with some database flags) To load and ...
0
votes
1answer
43 views

Migrate Hibernate managed C3P0 Pool to Spring Managed

I'm Spring(yfying) my application that uses Hibernate + C3P0 for the connection pool. I'm using a managed hibernate context for specific reasons. I'm using a utility class "HibernateUtil" for ...
1
vote
0answers
30 views

share transaction among several connections

I wonder is it possible to share single database transaction among several physical connections? This question is caused by curiosity rather than real task. However I encountered a problem which I ...
0
votes
1answer
53 views

Hibernate & Spring 3 not saving

I am using hibernate 3 and spring 3.0.7, I am trying to get my code to save an entity to the database but it just won't do it. I have tried everything with it but it seems like there is something I ...
0
votes
1answer
40 views

Open Session in View vs @Transactional

I had been using @Transactional annotations in my Service Layer. But to resolve an error due to Lazy Loading in View I had to use Open Session in View Filter. After this, without use of @Transaction ...
0
votes
1answer
29 views

ConcurrencyFailureException : Deadlock while adding large no of rows in batches

I have built a rest-ful service to insert large rows. To insert large no of rows I am using insertion in batches. What might cause the deadlock in this snippet of the restful service. final ...
3
votes
5answers
188 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, ...
0
votes
1answer
34 views

Transaction propagation in Activti BPM

We are using two seperate (XA) datasources, one with our business data and one with our Activiti scheme. We are passing the same JTA transaction manager to Activti through the ...
0
votes
0answers
22 views

Hibernate @Transactional annotation for separate Thread

We have two Java projects, one is a webapp using Spring MVC/Hibernate, and the other is an embedded JAR. The webapp starts a Thread, which performs some code in the embedded JAR. Eventually, the JAR ...
0
votes
2answers
28 views

Making a HTTP call from a java application coupled with a spring transaction manager

Here's the situation. I have an application that's working fine with the transactionmanager that i'm using. what i need to do is post some information onto another application in the form of http ...
0
votes
2answers
23 views

How to make a series of non database methods mimic transactions.

I have several method calls I need to perform that need to be "transactional" but I am unsure how to implement this aside from try/catch/finally. Background Application is console based. ...
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
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
1answer
41 views

rollback nested transaction in java

We run junit tests to test our java codebase. Each test will read/write some data to a mysql database(possibly multiple tables). It seems that the tests are leaving behind data that is interfering ...
0
votes
0answers
17 views

Get active hibernate transactions

We're using AOP in our persistence layer to check for deadlocks and perform different retry strategies. The issue is due to the multi-threading environment, we are encountering hibernate "transaction ...
0
votes
1answer
35 views

Transaction isolation levels relation with locks on table

I have read about 4 levels of isolation: Isolation Level Dirty Read Nonrepeatable Read Phantom Read READ UNCOMMITTED Permitted Permitted Permitted READ COMMITTED ...
0
votes
1answer
23 views

Understanding of Transactional services - spring

I have a service implementation with a particular method like so: public class ExampleServiceImpl implements ExampleService { @AutoWired @Resource private RecordRepository recordRepository; ...
3
votes
1answer
126 views

How to avoid repeatig DAO methods in Service classes? @Transactional annotated DAO and Service classes - is it acceptable practice?

I know that the best practice is having both service and dao layers and to add @Transactional annotations on the service level. But in my case it means most of my service classes is created just to ...
0
votes
0answers
27 views

Can I use @Transactional from Guice with Google App Engine's Datastore?

Can I do something like this? Would it still be a transaction even though I did not use ds.get(tx, key) and ds.put(tx, key)? public class MyClass { private final DatastoreService ds; ...
1
vote
1answer
170 views

Using AbstractTransactionalJUnit4SpringContextTests with commit halfway through

We want a simple unit test that runs multiple threads - the idea is that the main thread commits a save to the database, then waits for a secondary thread to pick it up. We're finding that the ...
0
votes
1answer
42 views

Independent transactions in Spring JDBC

I'm using the Spring JDBC (JdbcTemplate/NamedParameterJdbcTemplate) and Spring TransactionManager (DataSourceTransactionManager) in my DAO class. I have at least 2 clients that simultaneously using ...
0
votes
3answers
56 views

Ways to rollback a “soft” transaction in Java

When I say "soft" transaction I mean something which doesn't involve persistence in some DB but just logical object modifications. Here's the story. Plain JAVA application, no frameworks, possibly ...
0
votes
1answer
155 views

Spring 3.2: @WebAppConfiguration breaks existing @Transactional tests

Greetings. I have a Roo generated web app. I want to test my controller. So am using spring-test-3.2. Using STS 3.2. Embedded Derby for testing. The test suite fails when the controller test ...
0
votes
1answer
73 views

Implementing Spring ChainedTransactionManager according to the “best efforts 1PC” pattern

The best effort 1PC is nicely described in this post. The author, David Syer, who works for SpringSource, provided an implementation of a ChainedTransactionManager extending the Spring ...
0
votes
1answer
33 views

Objectify - does transaction throw ConcurrentModException in case of simultaneous creation of an entity?

Does Objectify throw a ConcurrentModificationException in case an entity with the same key (without a parent) is created at the same time (when before it did not exist) in two different transactions? ...
1
vote
1answer
386 views

Strange behaviour with @Transactional(propagation=Propagation.REQUIRES_NEW)

Here is my problem : I'm running a batch on a Java EE/Spring/Hibernate application. This batch calls a method1. This method calls a method2 which can throw UserException (a class extending ...
1
vote
1answer
78 views

Locking Tables with postgres in JDBC

Just a quick question about locking tables in a postgres database using JDBC. I have a table for which I want to add a new record to, however, To do this for the primary key, I use an increasing ...
3
votes
3answers
110 views

JDBC Transaction vs Connection Clarification

I am using JDBC to talk to my Postgres database. If my entire app runs off a single connection, ie there is only ever one call to; DriverManager.getConnection("jdbc:postgresql://host:5432/database", ...
2
votes
1answer
90 views

Transaction manager for service method that carries out DB operations on tables from multiple schemas

The application is in Spring + hibernate. It has a process under which mysql tables from 3 schemas get updated. I have different dataSources, sessionFactories and transactionManagers for each schema. ...
2
votes
2answers
36 views

java spring: assemble other independent services into a single service

there are two services: BookService { add(Book book); ... } and MsgService { add(String msg); ... } the two services are independent. now i want this: XService { ...
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
2answers
131 views

java.sql.SQLException: could not use local transaction commit in a global transaction

We are having two instances of oracle (two physical machines) and one schema for our application. we are using weblogic application server. application uses datasource for which XA transaction is ...
0
votes
2answers
138 views

Hibernate error in Liferay

I am using liferay and here are my classes and methods in them: EmployeeLocalServiceImpl.java public class EmployeeLocalServiceImpl extends EmployeeLocalServiceBaseImpl { /* * NOTE FOR ...
1
vote
1answer
116 views

PostgreSQL Transaction fails: “there is no transaction in progress”

I've got a pretty long transaction I'm trying to execute using JDBC for PostgreSQL. In JDBC I can't use COMMIT and ROLLBACK, so I'm trying to implement my desired behaviour in Java code... try { ...
0
votes
3answers
30 views

Spring should you start a transaction when accessing an object using find?

I have a few methods @persistanceContext EntityManager em; public Car getCar(int id) { em.find(Car.class, id) } @Trasnactional public void saveCar(Car car) { em.save(car); } Should you ...
0
votes
1answer
72 views

Spring - JMS - DB

My questions is as follows: I have a service, which queries the DB and retrieves some records. Then it updates an external system using that information and in the end in updates back the DB. Using ...
1
vote
1answer
27 views

Transactions around finder methods

Is it wise to start transactions around finder methods: @Transactional public E getParticularEvent(final String id) { return (E)em.find(carClass, id); } Should this be done?
1
vote
2answers
142 views

How to start transaction and rollback with JOOQ?

Yes! I have read the docs about jOOQ will never commit or rollback on the Connection (Except for CSV-imports, if explicitly configured in the Import API) jOOQ will never start any ...
0
votes
1answer
49 views

Spring transactions on recursive calls

I have a method that starts a transaction programmatically... using transaction template from spring... Void methodA() { TransactionTmeplate.......... Setpropgation to requires new.... ...
0
votes
1answer
57 views

Various ways databases implement transaction isolation levels set in a JDBC connection

We can set the transaction isolation level on a JDBC connection in order to control the level of visibility of read/write access to the common records between concurrent transactions. One way ...
0
votes
2answers
82 views

Spring programmatic transaction

I have code that has transactions demarcated programmatically. Currently I have the isolation set to PROPAGATION_REQUIRES_NEW. Which works fine however I need to cater for recursive behaviour and for ...

1 2 3 4 5 16