I've seen the work of the Filament Group before and they've always impressed me. This company is now supporting jQuery UI, which makes me want to try it.
Right know I'm using JSF/Facelets and...
Type: Posts; User: marcioemiranda; Keyword(s):
I've seen the work of the Filament Group before and they've always impressed me. This company is now supporting jQuery UI, which makes me want to try it.
Right know I'm using JSF/Facelets and...
The past days I've been reading the book POJO in Action (very good btw). He suggests the exact same approach as you do, which is good.
He proposes to have small business classes (like you do),...
I've opted for the solution described in this article:
http://java.dzone.com/articles/using-a-hibernate-interceptor-
It's based on the Auditable interface, but instead of using...
A big system will often have many operations.
How should one break this operations into service classes? What is the recommended service granularity?
Currently, I do it based on functional...
Let's take for example this two (very) common relationships in an e-commerce application:
Account 1xN Order
Department 1xN Item
In both cases the N end of the relationship may contain a lot of...
Hi,
Our current architecture is JSF/Facelets/RichFaces, Spring and Spring-iBatis. We use the JSF centric integration with Spring.
I'd like to take a look at Spring WebFlow and Spring Faces, but...
I have the following requirements for the customer:
- Have audit fields on the entities tables. The fields are creation date, last update date and user who modified it. There is not a separate table...