SpringBoot进制转换规则问题
1.填写yml文件
dataSource:driver-class-name: com.mysql.jdbc.Driver789password: 0127
2.测试类
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;@Testvoid contextLoads() {System.out.println(password);}}
3. 结果
4.总结
说明:使用SpringBoot类型中,纯字符串建议用字符串进行包裹。避免出现八进制转二进制。int类型支持二进制、八进制、十六进制。
SpringBoot进制转换规则问题
1.填写yml文件
dataSource:driver-class-name: com.mysql.jdbc.Driver789password: 0127
2.测试类
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;@Testvoid contextLoads() {System.out.println(password);}}
3. 结果
4.总结
说明:使用SpringBoot类型中,纯字符串建议用字符串进行包裹。避免出现八进制转二进制。int类型支持二进制、八进制、十六进制。