I’ve read many articles about optimistic locking and OptimisticLockException itself. Problem is that each one of them ended up getting their first exception and no Read more
Author: Tomasz Kalkosiński
Meet Sputnik – static code analyser for Gerrit
Sputnik runs Checkstyle, PMD and FindBugs for your Gerrit patchsets
I am happy to announce a first release of Sputnik! It is a static Read more
Sonar Gerrit Plugin Release
Initial release
I am happy to announce a first release of my Sonar Gerrit plugin. This plugin reports Sonar violations on your patchsets to Read more
Custom SonarQube rules for Unit Tests
I need a new rule
In our project we use (formely Sonar) to manage our code quality. It is a great tool and I recommend Read more
Error generating web.xml file with IntelliJ IDEA
If you use IntelliJ IDEA for your Grails development you might encounter this error running integration tests:
Error Error generating web.xml file (Use --stacktrace toRead more
Local Graphite installation on CentOS 5.5 howto
Feature request
Our client called:
– “I want something to monitor my application!”
– “Ok, let’s use JMX, we have plenty of stats exposed there Read more
Simple trick to DRY your Grails controller
Grails controllers are not very DRY. It’s easy to find duplicated code fragments in default generated controller. Take a look at code sample below. It Read more
New HTTP Logger Grails plugin
I’ve wrote a new Grails plugin – httplogger. It logs:
- request information (url, headers, cookies, method, body),
- grails dispatch information (controller, action, parameters),
- response
New HTTP Logger Grails plugin
I’ve wrote a new Grails plugin – httplogger. It logs:
- request information (url, headers, cookies, method, body),
- grails dispatch information (controller, action, parameters),
- response
How to keep session in HttpBuilder with cookies
In my real-world scenario I have a REST service for AJAX purposes. It renders data series for graphs. I want to test it with groovy’s Read more