Kotlin + Spring Boot 使用@Value读取配置文件

Kotlin + Spring Boot 使用@Value读取配置文件,第1张

TLDR

在做的一个项目遇到这个问题,需要把server.host存在application.properties里面,但是在取value 的时候遇到了问题,总是提示 ”lateinit property *** has not been initialized“,找遍了和so 都没有太好的答案,多方参考以后终于才解决这个小问题。

这个问题的存在是因为在spring 跑到@service class的时候,我们还没有取到配置文件里面的value, 所以导致了spring 认为这个value variable没有initialize。

解决方案就是把你要取的value放到class的constructor里面去,下面提供一个简单的example。

-application.properties

-Service.kt

Reference:

Kotlin Doc - Constructor

Another code example

#短信发送测试,hello message!!,将要发送的信息放到application.properties中转换一下,然后放到application-dev.properties文件中

#短信发送测试,hello message!!,将要发送的信息放到application.properties中转换一下,然后放到application-dev.properties文件中

message.content=\u77ED\u4FE1\u53D1\u9001\u6D4B\u8BD5\uFF0Chello message\uFF01\uFF01

在项目resources目录下创建文件,文件名自己起,后缀用properties,例如创建message.properties

message.content=短信发送测试,hello message!!

@Slf4j

@PropertySource(value = { "classpath:message.properties" }, encoding = "utf-8")

public class MessageServiceImpl(){

@Value("${message.content}")

private String content

log.info("[信息内容为:{}]",content)

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11544983.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存