-
Core Java
Simplifying nested loops with Java 8 Lambdas
This is just a quick tip for everyone who often has to work with multi dimensional arrays in Java 8…
Read More » -
Enterprise Java
Retry handling with Spring-Retry
Whenever software components communicate with each other, there is a chance for temporary self-correcting faults. Such faults include the temporary…
Read More » -
Enterprise Java
Java EE 8 MVC: Working with bean parameters
In the last posts we saw how to access query, path and form parameters in MVC Controllers. This post shows…
Read More » -
Software Development
Converting Markdown to PDF or DOCX with Pandoc
Markdown is a popular text formatting syntax among developers these days. Popular Sites like Github or Bitbucket use Markdown for…
Read More » -
Enterprise Java
Java EE 8 MVC: Working with form parameters
In the previous two posts we saw how to work with query and path parameters in the upcoming Java EE…
Read More » -
Enterprise Java
Java EE 8 MVC: Working with Path Parameters
In the previous post we saw how to work with query parameters in Java EE MVC. This post continues with…
Read More » -
Enterprise Java
Java EE 8 MVC: Working with query parameters
In the previous post about the new Java EE MVC Framework we had a detailed look on Controllers. In this…
Read More » -
Enterprise Java
Java EE 8 MVC: A detailed look at Controllers
Java EE MVC is a new action based MVC framework planned for Java EE 8 and specified in JSR-371. This…
Read More » -
Enterprise Java
Resource versioning with Spring MVC
When serving static resources, it is common practice to append some kind of version information to the resource URL. This…
Read More »