springboot学习四:Spring Boot profile多环境配置、devtools热部署

简介: 这篇文章主要介绍了如何在Spring Boot中进行多环境配置以及如何整合DevTools实现热部署,以提高开发效率。

导言

上接博文:springboot学习三:Spring Boot 配置文件语法、静态工具类读取配置文件

二、Spring Boot Profile 多环境配置

1. 介绍

我们在开发项目时,通常同一套程序会被发布到几个不同的环境,比如:开发、测试、生产等。其中每个环境的数据库地址、redis地 址、服务器端口等等配置都会不同,如果在为不同环境打包时都要频繁修改配置文件的话,那必将是个非常繁琐且容易发生错误的事。

对于多环境的配置,各种项目构建工具或是框架的基本思路是一致的,通过配置多份不同环境的配置文件,再通过打包命令指定需要 打包的内容之后进行区分打包,而Spring Boot 就更简单了,打好包后,只需在不同的环境下启动时候指定读取的配置文件就可以了。

在Spring Boot中多环境配置文件名需要满足application-{profile}.properties的格式,其中{profile}对应你的环境标识,比如:

  • application-dev.properties:开发环境
  • application-test.properties:测试环境
  • application-prod.properties:生产环境

至于哪个具体的配置文件会被加载,需要在application.properties文件中通过spring.profiles.active属性来设置,其值对应{profile} 值。
如:spring.profiles.active=test就会加载application-test.properties配置文件内容

2. 创建项目

  1. 项目细节
    在这里插入图片描述
  2. 项目插件(这里的版本,创建完项目后,我手动改成了2.7.2)在这里插入图片描述
  3. 修改配置文件为:application.yml
  4. 项目结构
    在这里插入图片描述

3. 创建多个 配置文件

在这里插入图片描述

4. 每个环境 设置branch分支的值

  • application.yml 默认dev
#默认使用dev的配置
spring:
  profiles:
    active: dev
  • application-dev.yml 端口8080

  • application-prod.yml 端口8081

  • application-test.yml 端口8082

server:
  port: 8082

branch: test

5. 测试类 controller

package com.feng.springBoot_profile.controller;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/test")
public class HelloController {

    @Value("${branch}")
    private String branch;

    @GetMapping("/branch")
    public String test(){
        return "Spring Boot Current branch :" + branch;
    }
}

6. 测试

a、测试:测试环境

  1. cd target
    在这里插入图片描述
  2. 进入到 jar同级执行 java -jar springboot_profile-0.0.1-SNAPSHOT.jar --spring.profiles.active=test
  3. 运行成功
    在这里插入图片描述
    在这里插入图片描述

b、测试:生产环境

  1. 在项目终端:ctrl+c,终止当前进程
  2. 然后执行命令: java -jar springboot_profile-0.0.1-SNAPSHOT.jar --spring.profiles.active=prod
  3. 运行成功
    在这里插入图片描述
  4. 测试成功
    在这里插入图片描述

7. 项目结构

在这里插入图片描述

五、Spring Boot 整合 devtools热部署

csdn 其他人的文档,挺好的,值得一看:https://blog.csdn.net/u014163312/article/details/120565270

1. 介绍

  • 是什么?
    spring为开发者提供了一个名为spring-boot-devtools的模块来使Spring Boot应用支持热部署,提高开发者的开发效率,无需手动重启Spring Boot应用。

  • devtools的原理
    底层原理是使用了两个ClassLoader,一个Classloader加载那些不会改变的类(第三方Jar包),另一个ClassLoader加载会更改的类,称为restart ClassLoader,这样在有代码更改的时候,原来的restart ClassLoader 被丢弃,重新创建一个restart ClassLoader,由于需要加载的类相比较少,所以实现了较快的重启时间。

2. 创建工程(重要的依赖)

  1. 项目细节
    在这里插入图片描述
  2. 引入依赖 web和DevTools (这里的版本,创建完项目后,我手动改成了2.7.2)
    在这里插入图片描述
  3. 修改配置名称为:application.yml
  4. 项目结构
    在这里插入图片描述

3. 引入 依赖(创建项目时已经引入)

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

4. 配置 plugin

加入 pligin 且配置一个属性 fork 为 true

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
               <configuration>
                   <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
               </configuration>
        </plugin>
    </plugins>
</build>

在这里插入图片描述

5. 开启自动编译

  • 当我们修改了Java类后,IDEA默认是不自动编译的,而spring-boot-devtools又是监测classpath下的文件发生变化才会重启应用,所以需要设置IDEA的自动编译:

  • 系统设置

    • Windows: Ctrl+Alt+S
    • MacOS:command +
  • 选择 File | Settings | Compiler 命令,然后勾选 Build project automatically 复选框,低版本的 IDEA 请勾选 make projectautomatically 复选框。
    在这里插入图片描述

6. 配置auto-make

IDEA 设置运行程中,设置允许自动编译

a、旧版本:2021之前

  • Windows快捷键:Ctrl + Shift + Alt + /
  • MacOS快捷键:双击shift,打开查找页面,输入reg
  • 操作: 勾选勾上 Compiler autoMake allow when app running
    意思是:

Allow auto-make to start even if developed application is currently running. Note that automatically started make may eventually delete some classes that are required by the application.

在这里插入图片描述

b、新版本:2021之后

2021之后的版本被迁移到了这里
在这里插入图片描述

c、重启 IDEA

7. devtools的配置

a、properties文件

application.properties 中配置 spring.devtools.restart.enabled=false ,此时restart类加载器还会初始化,但不会监视文件更新。

#热部署生效
spring.devtools.restart.enabled: true
#设置重启的目录
#spring.devtools.restart.additional-paths: src/main/java
#classpath目录下的WEB-INF文件夹内容修改不重启
spring.devtools.restart.exclude: WEB-INF/**

在SprintApplication.run之前调用System.setProperty(“spring.devtools.restart.enabled”, “false”);可以完全关闭重启支持,配置内容

public static void main(String[] args) {
    System.setProperty("spring.devtools.restart.enabled", "false");
    SpringApplication.run(MyApp.class, args);
}

b、yml文件

spring:
  devtools:
    restart:
      enabled: true # 热部署开关
    freemarker:
      cache: false # 页面不加载缓存,修改即时生效

8. 测试

  • 修改类–>保存:应用会重启
  • 修改配置文件–>保存:应用会重启

9. 扩展

以下信息,来自于spring boot官方:

Developer tools are automatically disabled when running a fully packaged application.
If your application is launched from java -jar or if it is started from a special classloader, then it is considered a “production application”.
You can control this behavior by using the spring.devtools.restart.enabled system property.
To enable devtools, irrespective of the classloader used to launch your application, set the -Dspring.devtools.restart.enabled=true system property.
This must not be done in a production environment where running devtools is a security risk.
To disable devtools, exclude the dependency or set the -Dspring.devtools.restart.enabled=false system property.

相关文章
|
23天前
|
监控 Java 数据库连接
详解Spring Batch:在Spring Boot中实现高效批处理
详解Spring Batch:在Spring Boot中实现高效批处理
123 12
|
23天前
|
安全 Java 测试技术
详解Spring Profiles:在Spring Boot中实现环境配置管理
详解Spring Profiles:在Spring Boot中实现环境配置管理
70 10
|
20天前
|
负载均衡 Java 开发者
深入探索Spring Cloud与Spring Boot:构建微服务架构的实践经验
深入探索Spring Cloud与Spring Boot:构建微服务架构的实践经验
63 5
|
1月前
|
前端开发 Java 开发者
Spring生态学习路径与源码深度探讨
【11月更文挑战第13天】Spring框架作为Java企业级开发中的核心框架,其丰富的生态系统和强大的功能吸引了无数开发者的关注。学习Spring生态不仅仅是掌握Spring Framework本身,更需要深入理解其周边组件和工具,以及源码的底层实现逻辑。本文将从Spring生态的学习路径入手,详细探讨如何系统地学习Spring,并深入解析各个重点的底层实现逻辑。
63 9
|
1月前
|
JavaScript Java 项目管理
Java毕设学习 基于SpringBoot + Vue 的医院管理系统 持续给大家寻找Java毕设学习项目(附源码)
基于SpringBoot + Vue的医院管理系统,涵盖医院、患者、挂号、药物、检查、病床、排班管理和数据分析等功能。开发工具为IDEA和HBuilder X,环境需配置jdk8、Node.js14、MySQL8。文末提供源码下载链接。
|
2月前
|
前端开发 Java 数据库
SpringBoot学习
【10月更文挑战第7天】Spring学习
41 9
|
29天前
|
Java Kotlin 索引
学习Spring框架特性及jiar包下载
Spring 5作为最新版本,更新了JDK基线至8,修订了核心框架,增强了反射和接口功能,支持响应式编程及Kotlin语言,引入了函数式Web框架,并提升了测试功能。Spring框架可在其官网下载,包括文档、jar包和XML Schema文档,适用于Java SE和Java EE项目。
32 0
|
2月前
|
XML Java 数据格式
Spring学习
【10月更文挑战第6天】Spring学习
26 1
SpringBoot设置热部署(超详细)【IDEA版】
SpringBoot设置热部署(超详细)【IDEA版】
SpringBoot设置热部署(超详细)【IDEA版】
|
存储 Java Maven
spring boot修改代码后无需重启设置,在开发时实现热部署
Spring Boot在开发时实现热部署(开发时修改文件保存后自动重启应用)(spring-boot-devtools) 热部署是什么 大家都知道在项目开发过程中,常常会改动页面数据或者修改数据结构,为了显示改动效果,往往需要重启应用查看改变效果,其实就是重新编译生成了新的Class文件,这个文件里记录着和代码等对应的各种信息,然后Class文件将被虚拟机的ClassLoader加载。
2483 0
下一篇
DataWorks