摘要: Reference Core Features Externalized Configuration SpringBoot应用可以从properties文件、yaml文件、环境变量、命令行参数中得到配置参数。 代码里可以使用注解@Value读取配置项的值。 配置项参数的加载顺序,后加载的属性,可以覆 阅读全文
posted @ 2024-08-18 22:59 jackieathome 阅读(53) 评论(0) 推荐(0) 编辑
摘要: Reference Core Features SpringApplication 使用SpringBoot开发应用,最简单的启动类,代码内容如下: import org.springframework.boot.SpringApplication; import org.springframewo 阅读全文
posted @ 2024-08-18 17:00 jackieathome 阅读(47) 评论(0) 推荐(0) 编辑
摘要: Reference Developing with Spring Boot Build Systems SpringBoot官方提供的starter的列表。 Structuring Your Code 避免使用的默认包。 应用的入口类,推荐放置在顶层包下。 Configuration Classes 阅读全文
posted @ 2024-08-18 15:39 jackieathome 阅读(33) 评论(0) 推荐(0) 编辑
摘要: Overview Documentation Requirements Spring Boot 3.3.2需要配套Java 17及以上的版本使用。 Installing Upgrading 对于使用1.X版本的项目,升级至当前的2.X及3.X版本时,需要详细阅读迁移指导。 升级SpringBoot版 阅读全文
posted @ 2024-08-18 11:58 jackieathome 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 入行的时候,构建项目的工具为Ant,后来在新项目中引入了Maven。 Ant类似于C语言,构建过程的每个环节,都需要详细指定,虽然功能很强大,但是写构建脚本的过程,开发体验和维护体验比较差。 Maven类似于C++语言,基于项目模型、约定大于配置等理念,重新定义了构建过程,分离框架和插件的交互和职责 阅读全文
posted @ 2024-08-18 00:02 jackieathome 阅读(32) 评论(0) 推荐(0) 编辑