赞
踩
一、依赖的导入与@SpringBootApplication注解的作用
1、所有的springboot工程都必须继承spring-boot-starter-parent
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>com.study</groupId>
- <artifactId>springBoot_quick</artifactId>
- <version>1.0-SNAPSHOT</version>
- <parent>
-
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.0.1.RELEASE</version>
- </parent>
2、以功能为单位,例如开发SpringMVC、等Web工程必须继承 spring-boot-starter-web
- dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
3、@SpringBootApplication
注解在哪个类上就表明该类是SpringBoot的引导类。
main方法是Java程序的入口。
run 方法是需要运行SpringBoot的引导类,参数就是SpringBoot引导类的字节码对象。
- @SpringBootApplication
- public class MySpringBootApplication {
-
-
- public static void main(String[] args){
-
- SpringApplication.run(MySpringBootApplication.class);
- }
- }
二、SpringBoot工程自动热部署
所谓热部署,其实就是在你的程序运行期间,开发过程中,需要经常修改代码,我们在不关闭本地服务的情况下,配置热部署,自动帮我们重新启动一次服务器,为开发节省了很多时间,提高了开发效率与体验。
1、导入依赖 此处是Maven,其他项目管理工具,例如Gradle等,可打开https://mvnrepository.com/查看Jar坐标依赖。
- <!--热部署配置-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- </dependency>
2、idea工具配置
Ctrl+Alt+S——> Build, Execution, Deployment ——> Compiler——>Build project automatically 将对勾选中。
然后 Ctrl+Shift+Alt+/ 选择Registry
选中对勾即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。