Java
-
WildFly 9 – Don’t cha wish your console was hawt like this!
Everybody heard the news probably. The first WildFly 9.0.0.Alpha1 release came out Monday. You can download it from the wildfly.org…
Read More » -
lambdas and side effects
Overview Java 8 has added features such as lambdas and type inference. This makes the language less verbose and cleaner,…
Read More » -
How to Safely Use SWT’s Display asyncExec
Most user interface (UI) toolkits are single-threaded and SWT is no exception. This means that UI objects must be accessed…
Read More » -
This is the Final Discussion!
Pun intended… Let’s discuss Java final. Recently, our popular blog post “10 Subtle Best Practices when Coding Java” had a…
Read More » -
Gradle Goodness: Adding Dependencies Only for Packaging to War
My colleague, Tom Wetjens, wrote a blog post Package-only dependencies in Maven. He showed a Maven solution when we want…
Read More » -
Hosting a Maven repository on github (with sources and javadoc)
How to make a small open sourced library available to other developers via maven? One way is to deploy it…
Read More » -
Testing mail code in Spring Boot application
Whilst building a Spring Boot application you may encounter a need of adding a mail configuration. Actually, configuring the mail…
Read More » -
Getters/Setters. Evil. Period.
There is an old debate, started in 2003 by Allen Holub in this Why getter and setter methods are evil…
Read More » -
Autoboxing
Autoboxing is clear for all Java developers since Java 1.5 Well, I may be too optimistic. At least all developers…
Read More »