All Questions
4 questions
2
votes
0
answers
183
views
Implementing a long-running entity lock
Requirement
I have an entity named ImportData which can be processed once in order to extract data from a file fed to the application.
I need to make sure that, in ...
3
votes
1
answer
6k
views
Customize data types in a generated model with hibernate
I have a Spring/Hibernate application with the following domain class (irrelevant code stripped for brevity):
...
2
votes
1
answer
95
views
ORM Entity with many similar relationships
To provide some background context, I'm implementing a web-based solution (Java, Spring, Hibernate) that allows the creation/authoring of task-centric workflow documents. Basically a workflow ...
2
votes
1
answer
14k
views
NHibernate session and transaction implementation
In order to create loose coupling architecture on my web applications, I have created my own implementation for ORM, in this case, NHibernate.
I want you please to review the code and tell me if you ...