Questions tagged [spring-boot-devtools]

`spring-boot-devtools` is Spring Boot subproject that enable quick reloading of static resources (by disabling template engines cache) and lightweight context reload when changes to `.class` files detected.

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
</dependency>

or:

dependencies {
    compile("org.springframework.boot:spring-boot-devtools")
}

Docs:

97 questions
0
votes
1 answer

Breakpoints and maven options are ignored when using spring devtools

I'm trying to use spring devtools for my project. When I add devtools dependency breakpoints stopped working and maven options are ignored. I'm using Netbeans. I added dependency into pom.xml
Michal
  • 614
  • 8
  • 20
0
votes
0 answers
0
votes
0 answers

IntelliJ "Build>Make" not available

I'm trying to implement spring boot devtools (auto restart to be exact), but I'm struggling even at making the projekt as - there is no make in my build menu. It's configured in my menu configuration, but it's just not visible. Even in my "Run/Debug…
Ben
  • 188
  • 4
  • 15
0
votes
2 answers

Run Intellij/Tomcat/SpringBoot DevTools in background (i.e. no focus on IntelliJ window)

I have a web application. I mostly used notepad++ for development. I need to use Intellij to run two Tomcat servlets. My ideal set up is to run the two serlets in IntelliJ and then minimise and never use intellij again (i.e. make my changes in…
0
votes
1 answer

Spring boot dev tools not working in Net beans

I have read about spring boot dev tools and want to try it, I add the following to my pom org.springframework.boot spring-boot-devtools
Almas Abdrazak
  • 3,209
  • 5
  • 36
  • 80
0
votes
3 answers

Drools does not match my fact

I am new to drools and have defined two rules : package com.mgaudin.sandbox.drools.rules; import com.mgaudin.sandbox.drools.models.Lead; rule "rule1" when l: Object() then …
Maxime
  • 1,776
  • 1
  • 16
  • 29
-1
votes
2 answers

Detecting if Spring Boot Devtools are active

Spring Boot has a Devtools package which will turn on useful developer features such as autoreload in an IDE. It will disable itself in the fully packaged application. Where are the technical details about how Spring Boot Devtools determines whether…
Garret Wilson
  • 18,219
  • 30
  • 144
  • 272
1 2 3 4 5 6
7