Hi Gilberto,
Thanks for reply. My application is similar structured as appfuse except more complex. In my service classes, there are many DAOs to serve up each method in the classes. This would...
Type: Posts; User: nonmin; Keyword(s):
Hi Gilberto,
Thanks for reply. My application is similar structured as appfuse except more complex. In my service classes, there are many DAOs to serve up each method in the classes. This would...
Any hint for this case or for concurrent situation from spring/hibernate?
Thanks very much.
Hi there,
I have a dirty data problem for my application. My application is using Spring/Hibernate. There are POJO , DAO, Service layers. For each method in a service class, I have using...
Hi irbouho,
Thanks for the reply. You are right I can use IoC to load it as a DAO. But is it ok if the util class has only static methods?
nonmin
Hi,
I have a question about locating servlet-context.xml from /WEB-INF/ dir by a util class. The application is web based, so I put all stuff normally in applicationContext.xml in the...
Hi all,
Those discussions are very helpful. I have a similar situation. For some part of my DAOImpls, I would like to use stored procedures; other part i am using Hibernate. Is it possible I...
I think you are right. Thanks very much for the help.
Hello,
I have met a problem for getHibernateTemplate().saveOrUpdate(order);
If the method is tested from class OrderTest's testCreateOrder(), it works fine and one order is inserted in the db. ...