Changes

Jump to navigation Jump to search
489 bytes added ,  14:38, 30 April 2022
m
Line 89: Line 89:  
</syntaxhighlight>
 
</syntaxhighlight>
    +
== Dev Tools ==
 +
Add at pom.xml<syntaxhighlight lang="xml">
 +
....
 +
    <dependencies>
 +
        ....
 +
        <dependency>
 +
            <groupId>org.springframework.boot</groupId>
 +
            <artifactId>spring-boot-starter-devtools</artifactId>
 +
            <scope>runtime</scope>
 +
        </dependency>
 +
        ....
 +
    </dependencies>
 +
....
 +
</syntaxhighlight><scope>runtime</scope> --> runs only at development
 +
 +
Provides:
 +
 +
* Develop server reloading on changes (pom.xml changes are not detected)
    
==Build==
 
==Build==

Navigation menu