Thanks for the explaination, I think it makes sense. Other than that hibernate made my life hard working with detached objects (had to merge all the time) so I already got rid of them and use IDs...
Type: Posts; User: Sergei Rogovskiy; Keyword(s):
Thanks for the explaination, I think it makes sense. Other than that hibernate made my life hard working with detached objects (had to merge all the time) so I already got rid of them and use IDs...
Hello,
I am having an issue understanding domain driven design. I've got a spring + hibernate application and I have a couple DAO and services objects. I implemented DAO using hibernate. I got a...
I got the same problem in my application. It looks like a bug in declarative transactions implementation to me (very annoying).
I am checking pool size using
a) mysql "show processlist" (it adds more and more connections with every update operation)
b) basicDs.getNumActive() gives number opened connection (BasicDataSource)...
Hi,
I am using String 1.2.6 with Hibernate 3.1 and DBCP as a persistent layer of my application. Transactions are defined as annotations to my service class methods. I've noticed that when I...
I wonder if there is a nice way to enter java.util.Date field from 3 HTML fields: [dd] - [mm] - [yyyy]. I looked through ServletRequestDataBinder but it looks like there is no way to compose a single...