Auto-compile configuration in Spring boot

Source: Internet
Author: User

Maven Auto-compile configuration

Thermal Deployment Features

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

Spring Boot's plugin configuration enables applications to be automatically packaged as war or jar applications. Add Build-plugin

<build>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <configuration>                    <fork>true</fork>                </configuration>            </plugin>        </plugins>    </build>

For eclipse, you need to project open it Build Automatically in
Normal operation is generally no problem, but when the package does not have a problem, it often leads to a hot deployment failure. You need to remove the problematic package from the current project Java Build Path Libraries and re-download it.
Sometimes, automatic compilation or is more annoying, or it is recommended to write a small module after verification, and then manual compilation check.

Auto-compile configuration in Spring boot

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.