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 […]
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 […]
org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean is LoadTimeWeaverAware and as thus should be provided with such. Usually this would be done with a @Configuration, but then there is SPR-10856. In short: a LoadTimeWeaverAwareProcessor is provided before post processing the bean factory. This means that an @Bean inside a configuration class comes to load for load time weaving. At least for […]
Introduction In January 2012 i bought a 27″ iMac 12,2 with a Intel Core i5 at 2,7Ghz which should have been a pretty decent and fast machine back then. The RAM can be easily upgraded in this thing which i did already back then to 16Gb for a fraction of the price Apple wants. The […]
If you reset your Microsoft Surface Pro 4 to factory defaults for whatever reasons you might end up like me: In an endless boot loop or the reset process being stuck at 7% (or, if you choose to erase everything, at 31%), this solution worked for me: Download the recovery image for your device and […]