上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
摘要: 4.1 SpringBoot配置文件类型 4.1.1 SpringBoot配置文件类型和作用 SpringBoot是基于约定的,所以很多配置都有默认值,但如果想使用自己的配置替换默认配置的话,就可以使用application.properties或者application.yml(applicati 阅读全文
posted @ 2025-01-10 23:40 ysd666 阅读(28) 评论(0) 推荐(0)
摘要: 3.2 自动配置原理解析 按住Ctrl点击查看启动类MySpringBootApplication上的注解@SpringBootApplication @SpringBootApplication public class MySpringBootApplication { public stati 阅读全文
posted @ 2025-01-10 23:39 ysd666 阅读(13) 评论(0) 推荐(0)
摘要: 3.1.2 分析spring-boot-starter-web 按住Ctrl点击pom.xml中的spring-boot-starter-web,跳转到了spring-boot-starter-web的pom.xml,xml配置如下(只摘抄了部分重点配置): 4.0.0 org.springfram 阅读全文
posted @ 2025-01-10 23:39 ysd666 阅读(38) 评论(0) 推荐(0)
摘要: 3.1 起步依赖原理分析 3.1.1 分析spring-boot-starter-parent 按住Ctrl点击pom.xml中的spring-boot-starter-parent,跳转到了spring-boot-starter-parent的pom.xml,xml配置如下(只摘抄了部分重点配置) 阅读全文
posted @ 2025-01-10 23:38 ysd666 阅读(48) 评论(0) 推荐(0)
摘要: 通过idea快速创建的SpringBoot项目的pom.xml中已经导入了我们选择的web的起步依赖的坐标 4.0.0 <groupId>com.itheima</groupId> <artifactId>springboot_quick2</artifactId> <version>0.0.1-S 阅读全文
posted @ 2025-01-10 23:38 ysd666 阅读(8) 评论(0) 推荐(0)
摘要: 2.2.4 使用idea快速创建SpringBoot项目 阅读全文
posted @ 2025-01-10 23:37 ysd666 阅读(10) 评论(0) 推荐(0)
摘要: 2.2.2 SpringBoot代码解析 @SpringBootApplication:标注SpringBoot的启动类,该注解具备多种功能(后面详细剖析) SpringApplication.run(MySpringBootApplication.class) 代表运行SpringBoot的启动类 阅读全文
posted @ 2025-01-10 23:36 ysd666 阅读(34) 评论(0) 推荐(0)
摘要: 2.1.3 编写SpringBoot引导类 要通过SpringBoot提供的引导类起步SpringBoot才可以进行访问 package com.itheima; import org.springframework.boot.SpringApplication; import org.spring 阅读全文
posted @ 2025-01-10 23:36 ysd666 阅读(17) 评论(0) 推荐(0)
摘要: 2.1.2 添加SpringBoot的起步依赖 SpringBoot要求,项目要继承SpringBoot的起步依赖spring-boot-starter-parent org.springframework.boot spring-boot-starter-parent 2.0.1.RELEASE 阅读全文
posted @ 2025-01-10 23:35 ysd666 阅读(29) 评论(0) 推荐(0)
摘要: 1.2 SpringBoot的概述 1.2.1 SpringBoot解决上述Spring的缺点 SpringBoot对上述Spring的缺点进行的改善和优化,基于约定优于配置的思想,可以让开发人员不必在配置与逻辑业务之间进行思维的切换,全身心的投入到逻辑业务的代码编写中,从而大大提高了开发的效率,一 阅读全文
posted @ 2025-01-10 23:34 ysd666 阅读(59) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页