Java教程

报错:Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder ‘oss.ossDomain‘

本文主要是介绍报错:Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder ‘oss.ossDomain‘,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

场景

配置文件里的配置写错,与Spring里面注入的不一致,然后无法识别,重启不了项目。

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ossController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'oss.ossDomain' in value "${oss.ossDomain}"
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'oss.ossDomain' in value "${oss.ossDomain}"
	at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:178)

处理方式

修改配置文件或者代码里的代码即可。

突发事件说明

如果发现你改了之后,还启动不了,你需要认真看一下报错信息。

因为,你如果有好几个地方用到,你只改了一个地方也是不行的。

这篇关于报错:Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder ‘oss.ossDomain‘的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!