@value注解获取属性文件的值怎么转换成int类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@value注解获取属性文件的值怎么转换成int类型相关的知识,希望对你有一定的参考价值。
参考技术A //@PropertySource:读取属性文件@PropertySource(value="classpath:conf/*.properties")@Configurationpublic class ConfigOfLifeCycle
@Bean public Student student() return new Student();
参考技术B
intValue: 123
@Value("#$intValue")private Integer intValue;
以上是关于@value注解获取属性文件的值怎么转换成int类型的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot的注解@Configuration @value 的区别