I have a fully implemented DAO and all my beans inherit an Entity object. Now, I want to create a client notification system whereby, when a user creates/updates/delete an entity to/from a persistence
i thinking of doing this architecture genericdao +interface ---> servicelayer+interface---> view layer
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I\'m trying to integrate Spring Security with Hibernate. I\'m new to both technologies so I\'m almost certainly taking too many steps at once here, but I\'m at the point where I want to authenticate a
@Entity public class Person { @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private Long id; private int salary;
Given you have a domain model with a simple parent / child relationship, and each entity has it\'s own associated DAO, eg:
There is a need to update one field to the same value in a heap of records. Using the DAO/ORM structure, I would retrieve each parent object, loop through each child object, update it\'s field, and th
It seems I\'m missing something with Java Generics because something I think is simple, it appears to me that can´t be done. Maybe you can help...
I had a client ask for advice building a simple WPF LOB application the other day. They basically want a CRUD application for a database, with main purpose being as a WPF training project.
Closed. This question is opinion-based. It is not currently accepting answers. 开发者_如何学JAVA