Tagged Questions
The transactional tag has no wiki summary.
17
votes
3answers
2k views
Spring - @Transactional - What happens in background?
I want to know what actually happens when you annotate a method with @Transactional?
Of course, I know that Spring will wrap that method in a Transaction.
But, I have the following doubts:
I heard ...
9
votes
2answers
170 views
Spring @Transactional - isolation, propagation
Can someone explain what isolation & propagation parameters are for in the @Transactional annotation via real world example. Basically when and why I should choose to change their default values.
...
7
votes
1answer
52 views
Can a git repository be corrupted if a command modifying it crashes or is aborted?
When playing around with git, I sometimes try out things, then abort commands which take too long (e.g. some git svn commands that hang during network problems). This got me thinking:
Is it always ...
5
votes
2answers
86 views
Using bidirectional associations from domain objects in @Transactional Junit Tests
I have a @Transactional JUnit Test set up and I want to persist some test data to the database and also test if the associations are correct.
However, when testing the associations, they always ...
5
votes
1answer
233 views
Spring Framework - Unit testing design
I'm writing to try and initiate a bit of a discussion regarding Spring Unit testing and in particular Transactional unit tests.
We currently have around 441 tests in a variety of classes annotated ...
5
votes
2answers
94 views
Is it possible to test the transactionality of a process?
I would like to be able to verify if each unit of work is done in its own transaction, or as part of a single global transaction.
I have a method (defined using spring and hibernate), which is of the ...
5
votes
3answers
4k views
spring transaction show in log?
i configured spring with transactional support. is there any way to show log on transaction in log?
just to ensure i set up correctly? showing in log is a good way to see what is happening
4
votes
1answer
447 views
Spring3 's @Transactional @Scheduled not committed to DB?
This is my 1st time trying Spring3's @Scheduled , but found I cannot commit to DB. This is my code :
@Service
public class ServiceImpl implements Service , Serializable
{
@Inject
private Dao ...
4
votes
1answer
337 views
Controlling inner transaction settings from outer transaction with Spring 2.5
I'm using Spring 2.5 transaction management and I have the following set-up:
Bean1
@Transactional(noRollbackFor = { Exception.class })
public void execute() {
try {
bean2.execute();
} catch ...
3
votes
1answer
86 views
Spring tests - problems with rollback
I have created Spring integration test in my application.
The problem is, one test doesn't rollback properly, leaves some stuff in database and causes subsequent tests to fail.
I have noticed, that ...
3
votes
3answers
235 views
@Transactional method calling another method without @Transactional anotation?
I've seen a method in a Service class that was marked as @Transactional but it was also calling some other methods in that same class which were not marked as @Transactional.
Does that mean the call ...
3
votes
0answers
173 views
Hibernate is saving a completely new entity automaticaly(full stack of calls)
there.
I have already asked this question two times, but I'm new to stackoverflow and it seems that I don't know the rules for formatting my example code in here. Now I've decided to give the full ...
3
votes
1answer
130 views
How to perform atomic operations in Hibernate?
Hi
I have a hibernate entity which has a set of another entity as its field. Something like this:
public class UserEntity implements Srializable {
private Set<Role> roles;
}
I should ...
3
votes
1answer
550 views
Where should “@Transactional” be place Service Layer or DAO
Firstly it is possible that I am asking something that has been asked and answered before but I could not get a search result back . Okay generally (or always so far:) ) We define transactional ...
3
votes
3answers
11k views
Spring @Transactional not creating required transaction
Ok, so I've finally bowed to peer pressure and started using Spring in my web app :-)...
So I'm trying to get the transaction handling stuff to work, and I just can't seem to get it.
My Spring ...
3
votes
2answers
2k views
spring multiple @transactional datasource
<bean id="transactionManager"
class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="data.emf" />
</bean>
...
3
votes
6answers
648 views
Transactional queueing/dequeueing
I need to queue events and tasks for external systems in a reliable/transactional way. Using things like MSMQ or ActiveMQ look very seductive, but the transactional part becomes complicated (MSDTC, ...
2
votes
2answers
64 views
Declarative transactions (@Transactional) doesn't work with @Repository in Spring
I'm trying to make simple application using Spring, JPA and embedded H2 database. Recently I've come across this strange issue with declarative transactions. They just doesn't commit if I autowire my ...
2
votes
1answer
49 views
Spring + Hibernate: using transactional and non-transactional datasources together
In my Spring 2.5.6 + Hibernate app I need to read/write data to/from multiple databases with different schemas. The app is on Tomcat, so for the time being I'd prefer not to have to use JTA so that I ...
2
votes
2answers
45 views
Some questions about Grails service
I am working with a Grails web application and I get so many strange things when using Grails service. So I want to ask some questions on this to make me understand more about Grails services. This ...
2
votes
2answers
74 views
Transactional saves without calling update method
I have a method annotated with @Transactional. I retrieve an object from my Oracle DB, change a field, and then return from the method. I forgot to save the object, but discovered that the database ...
2
votes
1answer
82 views
Spring nested @Transactional method and rollback
I have a @Service class which has a @Transactional method that calls another @Transactional method on the same class. I was testing rollback behavior for this and I found that it wasn't working ...
2
votes
2answers
98 views
Rails and Mailchimp - Welcome email
I need to send out a welcome email whenever a user registers in our website.
I have created a campaign in mailchimp for this.
I have also hooked up the hominid gem.
So, each time, I add users to ...
2
votes
1answer
148 views
Spring @transactional behaving strangely with mode=aspectj
I've been trying to get Spring transactions working properly in my application for days, and now I have nowhere to turn but to the community. Thanks in advance for your help.
My application has ...
2
votes
1answer
60 views
Strange intermittent error using TxNTFS
I'm using Transactional NTFS to read and write to files on the filesystem and I've noticed that the application encounters intermittent faults which as only solved by an app restart.
The stack trace ...
2
votes
1answer
57 views
Spring, Hibernate @OneToOne Problem with Transactional Test
i have a Problem while testing my DAOObject. I have two Entitys which are linked by a @oneToOne relation.
The Classes are:
@Entity
@Table
public class Device extends HyEntity {
...
2
votes
1answer
395 views
@Transactional throwing “Transaction not successfully started” on rollback
I have annotated the following service method to be transactional:
/* (non-Javadoc)
* @see a.b.service.CustomerService#activateCustomer(a.b.model.Customer)
*/
@Override
...
2
votes
1answer
77 views
using spring's @Transactional on a method which also makes use of aop:after advice
i was trying to see if there's already a similar question but couldn't find it so, here it is.
we have a legacy code where a single BO makes method calls to many DAOs using reflection.
i have ...
2
votes
1answer
1k views
@Transactional Spring Junit test not doing rollback
I try to set up a Junit test case for my dao layer.
However, I do NOT want the test data to be actually persisted to the DB.
So I thought I should do it transactionally and rollback after every test.
...
2
votes
1answer
144 views
Spring , Transactions , Hibernate Filters
I am using declarative transactions in Spring. I have a service layer which is annotated with "Transactional". This service layer calls the DAO. I need to enable a hibernate filter in all the dao ...
2
votes
2answers
521 views
Spring transactional context doesn't persist data
I know that my problem is a common problem, but I've checked a lot of questions here, checked Spring documentation and I really don't know what I am doing wrong.
My problem: I've got a Spring WebFlow ...
2
votes
1answer
430 views
Apache Transaction:write file transactionally - how to use resourceId
If anybody implemented transactional writing to file,please, assist me.
Related topic was discussed in earlier thread(transactional write).
Use case is following:
if writing to log file is ...
2
votes
1answer
275 views
Anything equivalent for @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW) in seam?
I need to have a @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW) and in a non EJB enviroment, how can we get the same using @Transactional in Seam?
Is any of the values the same as ...
2
votes
1answer
284 views
Hibernate SQLQuery bypasses hibernate session cache
I'm "transactionalizing" some extensive database manipulation and I came across this issue where if I run sql queries through hibernate but not using the MQL approach, the view of the database doesn't ...
2
votes
1answer
307 views
Use Spring @Transactional in Scala
We have a mixed Java and Scala project, which uses Spring transaction management. We are using the Spring aspects to weave the files with @Transactional annotated methods.
The problem is, that the ...
2
votes
1answer
836 views
HowTo extend Spring Annotation @Transactional
I have to use 3 different transaction managers in my webapp. So I wrote my own Annotation according to the Spring reference (Section 10.5.6.3 Custom shortcut annotations).
One annotation (for using ...
2
votes
1answer
647 views
Rails test db doesn't persist record changes
I've been trying to solve a problem for a few weeks now. I am running rspec tests for my Rails app, and they are working fine except for one error that I can't seem get my head around.
I am using ...
2
votes
1answer
213 views
Testing simultaneous calls to transactional service
How should I test a service method that is transactional for its simultaneous use (it updates a database row by decreasing a value)?
I have setup a JUnit test class with SpringJunit4ClassRunner and ...
1
vote
0answers
12 views
Is there any distributed, strict, transactional, read/write L2 cache provider for hibernate in weblogic 10 + java 5?
Is there any distributed, strict, transactional, read/write L2 cache provider for hibernate in weblogic 10 + java 5?
Infinispan looks appealing, but you need java 6. Hands are tied with java 5.
1
vote
0answers
68 views
Spring: HibernateTransactionManager handling multiple datasources
In the following piece of code (Spring 3):
@Transactional("txManager")
public class DaoHolder {
@Transactional(value="txManager", readOnly=false, propagation=Propagation.REQUIRES_NEW, ...
1
vote
0answers
52 views
How do you guarantee atomicity in transactions and consistency in a filesystem with agressive hard drive caching and reordering?
Todays hard drives are using more and more aggressive caching with reordering and are sometimes even completely ignoring cache flushes to boost performance values.
Is it possible to guarantee ...
1
vote
2answers
204 views
How to add transaction to wicket + spring + hibernate application for junit test
Hi I have the following problem when running junit test.
org.hibernate.HibernateException: No Session found for current thread
at ...
1
vote
1answer
31 views
SQL: view as function of value in table
I'm working with a transactional database: a relational database where a row in a table is defined as the set of values the database, at a given time, "thinks" the row's fields contain.
Part of the ...
1
vote
1answer
110 views
Avoid StaleObjectStateException when deleting entity
I have 2 concurrent threads that at the same time enter a (Spring) transaction service.
Using Hibernate, the service method loads some entities, processes those, finds one and deletes it from the DB. ...
1
vote
1answer
230 views
org.postgresql.util.PSQLException: Large Objects may not be used in auto-commit mode
I am using Spring , JPA, Hibernate, Postgresql. I can upload/insert a file to the database. But I got the error when tried to access the file.
EVERE: Servlet.service() for servlet default threw ...
1
vote
1answer
173 views
Spring @Transaction not starting transactions
I am using Spring 3 with Hibernate 3. I am trying to configure Spring declarative transaction, but no matter what I try, Spring transaction is not getting started.
Here is my configuration
File: ...
1
vote
1answer
108 views
Nested @Transactional
Is it possible to nest @Transactional annotated methods in spring? Consider something like this:
@Transactional
public void a() {
obj.b();
}
@Transactional
public void b() {
// ...
}
What ...
1
vote
1answer
204 views
Entities Not Persisting - Spring + Hibernate + JPA
I'm using Spring + Hibernate + JPA and I have a situation where I can't get my entities to persist to the database. I've set up a service class that is annotated with @Transactional. It uses a DAO ...
1
vote
3answers
650 views
How to implement “delete all” for a Spring Roo Entity?
I'm trying to delete all database entries for a Spring Roo entity. When I look at *_Roo_Entity.aj it seems as if there is no "delete all" method. I tried to implement it myself (Licences is the name ...
1
vote
3answers
447 views
Hibernate, Spring, @Transactional - surround with try/catch?
Im working on developing a webapplication with Spring 3 and Hibernate 3.6. Ive got some questions to the @Transactional Annotation and the structure of the code.
-> When I use @Transactional ...