Type safe JPA queries
Quite often I find myself refactoring parts of my applications for different reasons and I am sure most developers do the same thing. Refactoring a java application is relatively easy since java is statically typed language and compiler will catch all type mismatches, moreover, modern IDEs like eclipse, intelij and netBeans provide all the necessary [...]
URL Binding in Stripes
The best thing about Stripes is that it follows the convention over configuration practice. One of the most convenient conventions is the automatic generation and binding of URLs to the action bean class names. During development this is very helpful since you don’t need to keep in sync a configuration file as you add or [...]