Java
-
Common Misconceptions About Java
Java is the most widely used language in the world ([citation needed]), and everyone has an opinion about it. Due…
Read More » -
Spring Test Context Caching + AspectJ @Transactional + Ehcache pain
Are you using AspectJ @Transactionals and Spring? Do you have multiple SessionFactory’s maybe one for an embedded database for unit…
Read More » -
Apache CXF 3.0: JAX-RS 2.0 and Bean Validation 1.1 finally together
The upcoming release 3.0 (currently in milestone 2 phase) of the great Apache CXF framework is bringing a lot of…
Read More » -
Slim Down SWT FormLayout Usage
Always on the quest for efficiency I reconsidered the usability of SWT FormLayout lately. Although it is one of my…
Read More » -
How not to use Java 8 default methods
Warning: you can not make this unseen once you have read I was talking about the multiple inheritance of default…
Read More » -
Java 8 default methods: what can and can not do?
What default method is With the release of Java 8 you can modify interfaces adding new methods so that the…
Read More » -
Compiling and Running Java Without an IDE
A recent Java subreddit thread called “Compiling Java Packages without IDE” posed the question, “is [there] a command that compiles…
Read More » -
How to process stream and read text file in Java 8
I have converted one of my old utility class using latest Java8. I use this often to print content of…
Read More » -
How to implement a Session Timeout in Play Framework 2
If you follow the Play Framework 2 guide for implementing authentication: http://www.playframework.com/documentation/2.2.2/JavaGuide4 — you will notice that there is no…
Read More »