2021年12月22日 星期三

Spring Boot Maven Option Plugin

 Spring Boot Maven Option Plugin

資料來源:

https://www.1ju.org/spring-boot/hello-world-example-thymeleaf


        <!-- hot swapping, disable cache for template, enable live reload -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>

        <!-- Optional, for bootstrap -->
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>bootstrap</artifactId>
            <version>3.3.7</version>
        </dependency>