All posts in 'English posts'

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 »

Thoughts about architecture

23-Sep-15

Most people slice their cakes like this: Image by Elaine Ashton and in most cases not horizontally but still many developers, like i did in the past, slice their packages that way. Really, just slapping classes into packages named “Model”, “View” and “Controller” doesn’t implement that pattern. @jensschauder has written much more eloquent than i […]

Read the complete article »

jOOQ and Spring: Manage your RecordMappers as @Components

09-Sep-15

Lately i’ve been evaluating jOOQ as a core database tool for ENERKO Informatik. Though i’ve got quite some experience (and good experience!) with Hibernate and Spring Data JPA, we have some projects around that are quite old but not outdated. They are in need for an UI/UX and some architectural make over, but the data […]

Read the complete article »