通过注解读取配置文件中的值

配置中文件

spring:
  thymeleaf:
    cache: false # 关闭缓存,默认开启
  datasource:
    url: jdbc:mysql://localhost:3306/qcby_db?useUnicode=true&characterEncoding=utf-8
    username: root
    password: 12345678
    driver-class-name: com.mysql.cj.jdbc.Driver

 @Value("${spring.datasource.url}")
    private String dataUrl;

 

通过@Value("${}"),可以读取配置文件中的数值

你可能感兴趣的:(springboot,springboot)