SpringBoot获取配置文件的自定义参数

Posted cppdy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot获取配置文件的自定义参数相关的知识,希望对你有一定的参考价值。

1、在application.properties中自定义参数

spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8
spring.datasource.username=root
spring.datasource.password=root

spring.thymeleaf.mode=html5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#开发时关闭缓存,不然没法看到实时页面
spring.thymeleaf.cache=false

name=cppdy

2、在UserController中获取自定义参数,并创建测试方法

//获取自定义参数的值
@Value("${name}")
private String name;
//测试获取自定义参数值的方法
@RequestMapping("getName")
public String getName() {
    return name;
}

 

以上是关于SpringBoot获取配置文件的自定义参数的主要内容,如果未能解决你的问题,请参考以下文章

3.springboot:springboot配置文件(配置文件YAML属性文件值注入<@Value@ConfigurationProperties@PropertySource,@Im(代码片

3springboot:springboot配置文件(配置文件YAML属性文件值注入<@Value@ConfigurationProperties@PropertySource,@Imp(代码片

Springboot 获取.yml中自定义参数

SpringBoot中配置文件详解(ymlproperties全局配置和自定义配置),获取配置方式

springboot配置文件application-dev.properties,application-prod.properties,application-test.properties(代码片

springboot通过java代码获取配置参数