All posts in 'English posts'

2015 and gone…

22-Dec-15

2015 is coming to end, at least regarding work. The last things i did in December where preparing system specification for a mobile app (targeting BlackBerry) and learning how to create, communicate and maintain good architecture in Munich with Gernot Starke and Peter Hruschka: Not only i took home a lot of great books, insides, […]

Read the complete article »

Spring 4.2.x, Spring Boot and the Stomp broker relay

17-Nov-15

If you’re using a StompBrokerRelay on the MessageBrokerRegistry, be careful with your dependencies: If you’re using Spring Boot 1.2.x, you must have <dependency> <groupId>org.projectreactor</groupId> <artifactId>reactor-net</artifactId> </dependency><dependency> <groupId>org.projectreactor</groupId> <artifactId>reactor-net</artifactId> </dependency> on the classpath, in case of Spring Boot 1.3.x, which depends on Spring 4.2 which depends on Reactor 2, it must be <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-net</artifactId> </dependency> […]

Read the complete article »

Documenting your API with Spring REST Docs

05-Nov-15

We’ve been using apiDoc.js in a project for a while. While the resulting documentation looks neat, it has several drawbacks in our Java project. It depends on the full blown NPM stack, doesn’t fit well in a Maven build stack. It can be done via the grunt-maven-plugin and a gruntfile.js, but this is very hard […]

Read the complete article »

Super simple Java bean tester

01-Oct-15

This is not about bean testing is effective, right or whatever. Just assume you want your Java beans tested, for example to achieve full code coverage. There are some solutions out there and I used to use the BeanLikeTester but the library and i have different opinions about the hashCode/equals contract so i decided to […]

Read the complete article »