All posts in 'English posts'

On software improvement

17-May-16

As you may know, I’m running the daily photo project Daily Fratze for more then 10 years now. What started as a simple PHP script in the late summer of 2005 grow into a Ruby On Rails application during 2006 and in 2010 i started writing the current version in Java, based on the Spring […]

Read the complete article »

Book: arc42 by example

25-Apr-16

Here’s a shameless self plug for the first book i’ve contributed too: arc42 by example by Gernot Starke, Stefan Zörner and myself. This book contains several real-world software architectures, documented with the practical arc42 template. You will learn about the inner workings of a chess engine, a huge CRM system, a cool web system to […]

Read the complete article »

NetBeans settings for smooth debugging Spring Boot Applications

22-Apr-16

Here’s a short tip for a smoother debugging experience using NetBeans for developing Spring Boot Applications while using the Spring Boot Devtools: Make sure you include the Devtools inside your dependency management: <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> </dependencies><dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> </dependencies> or dependencies { compile("org.springframework.boot:spring-boot-devtools") }dependencies { compile("org.springframework.boot:spring-boot-devtools") } Devtools will […]

Read the complete article »

8 new features you’ll get with Spring Boot 1.4

17-Apr-16

Phil as a nice post about the improvements on testing in Spring Boot 1.4, check it out here: Testing improvements in Spring Boot 1.4. I’d like to add a concrete example for those and some more, please have a look at the comments inside one of the most important controllers I’ve ever written 😉 Those […]

Read the complete article »