Extending your JPA POJOs - Java Code Geeks
Extensibility is an important characteristic in many architectures. It is a measure of how easy (or difficult) it is to add or change functionality without impacting existing core system...
View ArticleHow to use web services, TopLink, POJO's and other data providers as a...
Or a cunning plan to disguise Java code as view objects and entity objects. IntroductionFirst of all why do we need to be able to do this anyway? The answer is that we might have some functionality...
View ArticleJava EE6 – Pojo Injection | Prait my Blog
OMG, I was looking the whole day why on earth my Pojos were not injected with the @Inject annotation. The little devils were always null and google had answers, but not the ones I needed. Then, thank...
View ArticleHow to use reflection to copy properties from Pojo to other Java Beans
Sometimes we need copy properties from a Java class to other, we can do it this manually or with our own reflection implementation, but in this case use us reflection for automate it with a utility...
View ArticleA Programmer's Journal: How to write better POJO Services
In Java, you can easily implement some business logic in Plain Old Java Object (POJO) classes, and then able to run them in a fancy server or framework without much hassle. There many...
View Article