Spring 全家桶之 Spring Boot 2.6.4(二)- Configuration(Part B)(上)

简介: Spring 全家桶之 Spring Boot 2.6.4(二)- Configuration(Part B)

三、@PropertySource和@ImportSource

  • @ImportResource注解可以读取指定的外部配置文件
  • @PropertySource注解可以加载指定的配置文件

与Spring Boot无关的配置文件放在非主配置文件中,例如person相关的配置可以放在新建的person.properties中,可以使用@PropertySource注解来加载这个单独的配置文件,该注解仍然需要和@ConfigurationProperties注解搭配使用。

@PropertySource注解的使用

image.png

Person实体类上使用@PropertySource注解指定配置文件,配置全都写在person.properties中

@ConfigurationProperties(prefix = "person")
@PropertySource(value = {"classpath:person.properties"})
@Component
@Data
public class Person {
    private String lastName;
    private Integer age;
    private Boolean boss;
    private Date birth;
    private Map<String,Object> maps;
    private List<Object> list;
    private Dog dog;
}
复制代码

person.properties配置文件

person.lastName=stark1
person.age=19
person.birth=1980/12/12
person.boss=true
person.maps.k1=v1
person.maps.k2=v2
person.list=a,b,c
person.dog.name=pipi
person.dog.age=2
复制代码

value是一个数组,可以写多个配置文件,@ConfigurationProperties(prefix = "person")默认是指application.properties配置文件,如果需要加载其他配置文件需要@PropertySource注解指定。

执行测试

image.png

@ImportResource注解的使用

@ImportResource注解的作用是可以导入Spring的配置文件,让配置文件里面的配置生效

@ImportResource注解的属性

image.png

value是一个数组,说明可以一次导入多个配置文件。

创建一个service包,创建HelloService,在Spring配置文件spring.xml中配置

public class HelloService {
}
复制代码

在resources目录下创建一个Spring的配置文件spring.xml,用bean标签配置一个Java Bean注册到Spring容器中

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       https://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean id="helloService" class="com.lilith.configuration.service.HelloService">
    </bean>
</beans>
复制代码

在主程序上使用@ImportResources注解,导入spring.xml配置文件

@SpringBootApplication
@ImportResource(locations = {"classpath:spring.xml"})
public class ConfigurationApplication {
    // 中间内容不变
}
复制代码

在test包下增加HelloServiceTest,从容器中获取HelloService对象。

@SpringBootTest
public class HelloServiceTest {
    @Autowired
    private HelloService helloService;
    @Test
    public void testBean(){
        System.out.println(helloService);
    }
}
复制代码

执行测试

image.png

控制台成功输出HelloSerivce对象,说明@ImportResource成功导入了spring.xml配置文件。

相比这种通过配置文件方式注册Bean或者组件,Spring Boot 推荐的方式是通过配置类的方式给容器中注入组件,通过全注解的方式注入。

新建config包,增加CustConfig配置类,增加@Configuration表明当前类是一个配置类,替代spring.xml配置文件,@Bean注解作用在方法上,方法的返回值就是注入到容器中的组件,方法名就是组件在容器中的名称。

@Configuration //表明当前类是一个配置类,替代spring.xml配置文件
public class CustConfig {
    // 代替bean标签,将方法返回值注入容器中,默认方法名就是导入容器中的组件的名字
    // 也可以通过name属性指定组件的名称
    @Bean(name = "helloService")
    public HelloService helloService(){
        System.out.println("@Bean注解将HelloService组件添加到容器中!");
        return new HelloService();
    }
}
复制代码

再次执行HelloServiceTest

image.png

通过配置类的方式也可以将组件注入容器中

四、配置文件的占位符

配置文件中可以使用占位符,支持配置文件中的属性引用。

Person实体类上读取主配置文件application.properties

# 使用随机值
person.last-name=stark1${random.value}
person.age=${random.int}
person.birth=1980/12/12
person.boss=true
person.maps.k1=v1
person.maps.k2=v2
person.list=a,b,c
# 引用前面配置过的属性
person.dog.name=${person.last-name}_pipi
person.dog.age=2
复制代码

执行PersonTest测试

image.png

引用不存在的属性

当引用不存在的属性时会原样输出,修改配置文件,引用不存在的person.hello属性

person.dog.name=${person.hello}_pipi
复制代码

执行PersonTest测试

image.png

{person.hello}原样输出。

为引用的不存在的属性设置默认值

属性不存在时为了避免原样输出也可以可以设置默认值,不存在的时候取默认值,在“:”后面设置默认值

person.dog.name=${person.hello:stark}_pipi
复制代码

再次执行PersonTest测试

image.png

成功获取到设置的默认值

五、Profiles多环境支持

Profiles是Spring对不同环境提供不同配置功能的支持,可以通过激活或者指定参数的形式快速切换环境。

application.properties格式的多profiles文件方式

# 使用dev环境
spring.profiles.active=dev
复制代码

application.yml格式多文档块方式

spring:
  profiles:
  # 激活test环境
    active: test
复制代码

命令行方式

java -jar xxx.jar --spring.prifles.active=dev
复制代码

jvm参数方式

-Dspring.profiles.active=dev


相关文章
|
2天前
|
XML Java 应用服务中间件
Spring Boot 两种部署到服务器的方式
本文介绍了Spring Boot项目的两种部署方式:jar包和war包。Jar包方式使用内置Tomcat,只需配置JDK 1.8及以上环境,通过`nohup java -jar`命令后台运行,并开放服务器端口即可访问。War包则需将项目打包后放入外部Tomcat的webapps目录,修改启动类继承`SpringBootServletInitializer`并调整pom.xml中的打包类型为war,最后启动Tomcat访问应用。两者各有优劣,jar包更简单便捷,而war包适合传统部署场景。需要注意的是,war包部署时,内置Tomcat的端口配置不会生效。
68 17
Spring Boot 两种部署到服务器的方式
|
9天前
|
缓存 安全 Java
Spring Boot 3 集成 Spring Security + JWT
本文详细介绍了如何使用Spring Boot 3和Spring Security集成JWT,实现前后端分离的安全认证概述了从入门到引入数据库,再到使用JWT的完整流程。列举了项目中用到的关键依赖,如MyBatis-Plus、Hutool等。简要提及了系统配置表、部门表、字典表等表结构。使用Hutool-jwt工具类进行JWT校验。配置忽略路径、禁用CSRF、添加JWT校验过滤器等。实现登录接口,返回token等信息。
163 12
|
15天前
|
存储 安全 Java
Spring Boot 3 集成Spring AOP实现系统日志记录
本文介绍了如何在Spring Boot 3中集成Spring AOP实现系统日志记录功能。通过定义`SysLog`注解和配置相应的AOP切面,可以在方法执行前后自动记录日志信息,包括操作的开始时间、结束时间、请求参数、返回结果、异常信息等,并将这些信息保存到数据库中。此外,还使用了`ThreadLocal`变量来存储每个线程独立的日志数据,确保线程安全。文中还展示了项目实战中的部分代码片段,以及基于Spring Boot 3 + Vue 3构建的快速开发框架的简介与内置功能列表。此框架结合了当前主流技术栈,提供了用户管理、权限控制、接口文档自动生成等多项实用特性。
64 8
|
28天前
|
缓存 前端开发 Java
【Spring】——SpringBoot项目创建
SpringBoot项目创建,SpringBootApplication启动类,target文件,web服务器,tomcat,访问服务器
|
2月前
|
监控 Java 数据库连接
详解Spring Batch:在Spring Boot中实现高效批处理
详解Spring Batch:在Spring Boot中实现高效批处理
366 12
|
2月前
|
安全 Java 测试技术
详解Spring Profiles:在Spring Boot中实现环境配置管理
详解Spring Profiles:在Spring Boot中实现环境配置管理
124 10
|
1月前
|
负载均衡 Java 开发者
深入探索Spring Cloud与Spring Boot:构建微服务架构的实践经验
深入探索Spring Cloud与Spring Boot:构建微服务架构的实践经验
176 5
|
2月前
|
存储 运维 安全
Spring运维之boot项目多环境(yaml 多文件 proerties)及分组管理与开发控制
通过以上措施,可以保证Spring Boot项目的配置管理在专业水准上,并且易于维护和管理,符合搜索引擎收录标准。
64 2
|
3月前
|
SQL JSON Java
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和PageHelper进行分页操作,并且集成Swagger2来生成API文档,同时定义了统一的数据返回格式和请求模块。
117 1
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
|
3月前
|
监控 Java 应用服务中间件
Spring和Spring Boot的区别
Spring和Spring Boot的主要区别,包括项目配置、开发模式、项目依赖、内嵌服务器和监控管理等方面,强调Spring Boot基于Spring框架,通过约定优于配置、自动配置和快速启动器等特性,简化了Spring应用的开发和部署过程。
95 19