Tag Archives: Design Decision

Value Objects [Transfer Objects]

The main reason for using the value objects is because in comparison to using enterprise beans, it is always efficient to pass a single argument with multiple fields in it than passing fields individually. Also it also helps us to enforce the business rules associated with an entity in a lot easier way. Some technologies […]

read more

Singleton Design Pattern

If we are talking about Design Patterns, One of the most common pattern that crosses your mind is Singleton Design Pattern. The underlying definition of the same is “Ensure a class only has one instance, and provide a global point of access to it.” Even though it is simple and most of you might already […]

read more

Pagination: Server Side or Client Side?

What is it best way to handle pagination/sorting and filtering? Server side or at the client side? Numerous times in your projects you might have to face a situation where you need to pull chunks of data dynamically. The obvious issue that you then face is paginationsorting and filtering. You then start to think if […]

read more