All posts tagged with 'NetBeans'

NetBeans, Maven and Spring Boot… more fun together

10-Sep-16

At the 1st NetBeans Day Cologne I gave a talk about why I think that the combination of NetBeans, Maven and Spring Boot is more fun together. Together with me were Michael Müller, who spoke about the upcoming support of Java 9s JShell in NetBeans and I’m totally curious how that will work with my […]

Read the complete article »

NetBeans IDE plugin supporting programming with Spring Boot

19-Jun-16

There are several plugins out there for supporting Spring development in NetBeans, but the NB-SpringBoot by Alessandro Falappa seems to be the most feature complete. At the moment installation must be done via manual download from here but that should be fixed soon. You’ll get a really nice Spring property support: Great integration with start.spring.io: […]

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 »