Failed to load property source from location 'classpath:/application.properties'

沉舟侧畔千帆进,病树前头万木春。这篇文章主要讲述Failed to load property source from location ' classpath:/application.properties' 相关的知识,希望能为你提供帮助。
java.lang.IllegalStateException: Failed to load property source from location ‘classpath:/application.properties‘
Caused by: java.lang.IllegalArgumentException: Malformed uxxxx encoding.
#保存图片的路径
ueditor.upload.filepath= E:geekbanguploadimages
#静态资源目录
ueditor.upload.staticFilePath= file:E:geekbang

原因是properties中不能含有符号

解决方法:
ueditor.upload.filepath= # E:\geekbang\upload\images
【Failed to load property source from location ' classpath:/application.properties' 】ueditor.upload.staticFilePath= file:E:\geekbang\







    推荐阅读