SpringBoot(一)初遇
阿新 • • 發佈:2018-11-08
環境: IDEA 2018.1.3 jdk 1.8
New Project
Import Project
熱部署
修改配置和引入jar包後注意重新啟動專案
1.pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build>
2.修改設定
3.registry設定