2020-04-17发表2023-04-15更新开发问题SpringBoot参数配置的坑问题在yml中配置参数,用 @ConfigurationProperties 注解来注入,发现配置以0开头的字符串得到的结果是错的,比如配置的01010807,实际的值变为 1010807.0 解决配置的值用加引号 ""即可,原因是值被当成了数字类型 123the-one: todo: region: "01010807" https://github.com/spring-projects/spring-boot/issues/9389 #开发问题