【第2章】SpringBoot配置文件

文章目录


前言

SpringBoot工程创建后,会为我们提供一个默认的配置文件(application.properties),配置文件主要用于那些可能发生变化且经常改变的属性值。


一、编写配置信息

SpringBoot为我们提供了很多的内置配置信息,如:server.port等,如果我们在配置文件中定义了属性值则会覆盖默认值,未声明则使用默认值;

我们也可以自定义属性值。
主要的配置文件又分为properties和yml两种

1. properties

properties以键值对的形式存在。

bash 复制代码
#内置配置
spring.application.name=spring-boot3
server.port=8080
#自定义配置
#prop.ip=127.0.0.1
prop.port=80
prop.user=admin
prop.pwd=123456
#数组
prop.singer=ChanteMoore,凡希亚,那英

IDEA使用properties配置文件需要配置ascii转换,否则会乱码 确保IDE和JVM都配置为使用UTF-8编码,可以添加 -Dfile.encoding=UTF-8 参数。

2. yml

bash 复制代码
#内置配置
spring:
  application:
    name: spring-boot3
server:
  port: 8081
#自定义配置
yml:
  #ip: 127.0.0.1
  port: 80
  user: admin
  pwd: 123456
  #数组
  singer: ChanteMoore,凡希亚,那英

application.properties优先级更高

二、获取配置信息

1.直接获取

java 复制代码
package org.example.springboot3.controller;

import org.example.springboot3.config.SpringBootConfig;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;

/**
 * Create by zjg on 2024/5/17
 */
@RestController
@RequestMapping("/config/")
public class ConfigController {
    @Value("${prop.ip:127.0.0.1}")
    private String ip;
    @Value("${prop.port:80}")
    private int port;
    @Value("${prop.user}")
    private String user;
    @Value("${prop.pwd}")
    private String pwd;
    @Value("${prop.singer}")
    private String []singer;
    //直接获取
    @RequestMapping("001")
    public String config001(){
        Map<String,Object> map=new HashMap<>();
        map.put("ip",ip);
        map.put("port",port);
        map.put("user",user);
        map.put("pwd",pwd);
        System.out.println(Arrays.toString(singer));
        System.out.println(map);
        return map.toString();
    }
    @Autowired
    SpringBootConfig springBootConfig;
    //配置类形式
    @RequestMapping("002")
    public String config002(){
        System.out.println(springBootConfig);
        return springBootConfig.toString();
    }
}

[ChanteMoore, 凡希亚, 那英]

{port=80, ip=127.0.0.1, pwd=123456, user=admin}

2.配置类形式

java 复制代码
package org.example.springboot3.config;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import java.util.Arrays;

/**
 * Create by zjg on 2024/5/17
 */
@Configuration
@ConfigurationProperties(prefix = "yml")
public class SpringBootConfig {
    @Value("${yml.ip:127.0.0.1}")
    private String ip;
    private int port;
    private String user;
    private String pwd;
    private String []singer;

    public void setIp(String ip) {
        this.ip = ip;
    }

    public void setPort(int port) {
        this.port = port;
    }

    public void setUser(String user) {
        this.user = user;
    }

    public void setPwd(String pwd) {
        this.pwd = pwd;
    }

    public void setSinger(String[] singer) {
        this.singer = singer;
    }

    @Override
    public String toString() {
        return "SpringBootConfig{" +
                "ip='" + ip + '\'' +
                ", port=" + port +
                ", user='" + user + '\'' +
                ", pwd='" + pwd + '\'' +
                ", singer=" + Arrays.toString(singer) +
                '}';
    }
}

SpringBootConfig{ip='127.0.0.1', port=80, user='admin', pwd='123456', singer=[ChanteMoore, 凡希亚, 那英]}


总结

回到顶部
更多内置属性
Properties和Yaml在线转换

properties语法更加直观,但键容易重复。

yml配置文件语法更加简洁,层级更加清晰。

相关推荐
Yan.love29 分钟前
开发场景中Java 集合的最佳选择
java·数据结构·链表
椰椰椰耶32 分钟前
【文档搜索引擎】搜索模块的完整实现
java·搜索引擎
大G哥32 分钟前
java提高正则处理效率
java·开发语言
小_太_阳1 小时前
Scala_【1】概述
开发语言·后端·scala·intellij-idea
智慧老师1 小时前
Spring基础分析13-Spring Security框架
java·后端·spring
lxyzcm1 小时前
C++23新特性解析:[[assume]]属性
java·c++·spring boot·c++23
V+zmm101342 小时前
基于微信小程序的乡村政务服务系统springboot+论文源码调试讲解
java·微信小程序·小程序·毕业设计·ssm
Oneforlove_twoforjob2 小时前
【Java基础面试题025】什么是Java的Integer缓存池?
java·开发语言·缓存
xmh-sxh-13142 小时前
常用的缓存技术都有哪些
java
搬码后生仔2 小时前
asp.net core webapi项目中 在生产环境中 进不去swagger
chrome·后端·asp.net