While creating a maven archetype for a project skeleton, I encountered a weird bug with .gitignore that was not being copied into the generated project even though
it was specifically included in the corresponding fileSet
in archetype-metadata.xml
:
Continue reading
There is often a need to have the same @RequestParam
in multiple methods and even in multiple controllers, e.g.
a required filter param that is processed in a hibernate filter for security checking.
To avoid repeating the same parameter in every request the only thing needed is to register a new @ControllerAdvice
bean.
Continue reading
A little tutorial on how to integrate Riak TS with a Spring Boot application
Continue reading
Almost no guide I found on the Internet about ssh-agent worked for me and writing a passphrase on every pull and push is tedious.
So here is my working solution for Kubuntu 14.04.
These are the steps needed for ssh-agent and ssh-add to automatically take your passphrase from Kwallet in Kubuntu.
Continue reading
I found out about a problem with apache2 and mod_lua today.
When trying to enable mod_lua in apache
Continue reading