Pattern « Update « JPA Q&A





1. Good design for persisting a JPA domain object    stackoverflow.com

I have a domain object that stores some metadata and some raw bytes. This is used for storing binary objects such as PDF documents and images. I would like to persist the ...

2. Client Server Communication and Persistence Frameworks    stackoverflow.com

When using Persistence frameworks like Hibernate, JPA etc. on the server side, what are the general practices of passing on the data between client and server ? Are there any existing ...

3. Tips for Manually Managing Persistence Context    stackoverflow.com

I am investigating using JPA for my Data Access code. I am trying to write the business layer and data access layer so it will work in a web application ...

4. Persistent object modification patterns    forum.hibernate.org

I am having a hard time devising a pattern for the modification of my persistent objects. I have a few objects that require some tedious validation prior to allowing the object to be updated. My desired pattern would be as follows: 1. UI get persistent object to be updated. 2. UI update modified fields. 3. UI pass object to Logic "modify" ...