Thats fine for the business logic. I cant make the service layer transactional because each one of these transactions processes large amounts of data.
My OSIVF is configured to use single session,...
Type: Posts; User: chvs2000; Keyword(s):
Thats fine for the business logic. I cant make the service layer transactional because each one of these transactions processes large amounts of data.
My OSIVF is configured to use single session,...
I want updateBar() has to be in a new transaction always. Because as soon as the process starts i lock the bar so any other process checks the lock before starting the process.
All the stuff in...
I have an OpenSessionInViewInterceptor in my application, And a service class method calling DAO methods. All my DAO methods are transactional with PROPOGATION_REQUIRED.
Lets say there are about...
I know why I am getting that exception, but cant really get around it. Here is how my code looks
public class FooService
{
public void foo(){
Bar bar= barDAO.getBar();
...
How can i include an implementation of View Interface whose content type is text/html into tiles?
I could have written a JSP, but i want to reuse the same code i wrote for PDF generation using...
Can someone please explain me this behavior.
This is how my attribute defiintions for transactions look like
<property name="properties">
<props>
<prop...
My database is mysql. In my DAOS i use HibernateTemplate to perform db opertations.
I dont have any transaction management set up, or there is not no programmatic transactions, but still my...
I am looking for some ideas on how to refresh my applicationContext with out restarting the application by invoking following line of code.
((XMLWebApplicationContext)applicationContext).refresh(); ...