1.填写yml文件
XML
dataSource:
driver-class-name: com.mysql.jdbc.Driver789
password: 0127
2.测试类
java
package com.forever;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class Springboot09ConfigurationApplicationTests {
@Value("${dataSource.password}")
private String password;
@Test
void contextLoads() {
System.out.println(password);
}
}
3. 结果
4.总结
说明:使用SpringBoot类型中,纯字符串建议用字符串进行包裹。避免出现八进制转二进制。int类型支持二进制、八进制、十六进制。