博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[spring] spring启动报错Could not resolve placeholder 'DEFAULT' in string value "${DEFAULT}"
阅读量:2215 次
发布时间:2019-05-07

本文共 1019 字,大约阅读时间需要 3 分钟。

需求描述:

将常量放在properties文件中,spring的xml配置文件读取properties常量.

错误描述:

Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener

org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name ‘org.apache.solr.client.solrj.impl.CloudSolrServer#0’ defined in file [D:\java\idea\parent\solrjDemo\target\classes\applicationContext-solrj.xml]: Could not resolve placeholder ‘DEFAULT’ in string value “$ {DEFAULT}”; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder ‘DEFAULT’ in string value “${DEFAULT}”

发现部分常量无法读取.

解决方法:

出现错误的原因是常量处于不同的properties文件中,而使用

<context:property-placeholder/ >

标签引入properties文件时没有一次性引入,而是分成了诸如

<context:property-placeholder location=“classpath:db.properties”/>

<context:property-placeholder location=“classpath:solr.properties”/>

这样两次使用< context:property-placeholder>标签产生出错.

建议使用

<context:property-placeholder location=“classpath:*.properties”/>

一次性读取全部properties文件.

转载地址:http://rjzfb.baihongyu.com/

你可能感兴趣的文章
【LEETCODE】240-Search a 2D Matrix II
查看>>
【LEETCODE】53-Maximum Subarray
查看>>
【LEETCODE】215-Kth Largest Element in an Array
查看>>
【LEETCODE】241-Different Ways to Add Parentheses
查看>>
【LEETCODE】312-Burst Balloons
查看>>
【LEETCODE】232-Implement Queue using Stacks
查看>>
【LEETCODE】225-Implement Stack using Queues
查看>>
【LEETCODE】155-Min Stack
查看>>
【LEETCODE】20-Valid Parentheses
查看>>
【LEETCODE】290-Word Pattern
查看>>
【LEETCODE】36-Valid Sudoku
查看>>
【LEETCODE】205-Isomorphic Strings
查看>>
【LEETCODE】204-Count Primes
查看>>
【LEETCODE】228-Summary Ranges
查看>>
【LEETCODE】27-Remove Element
查看>>
【LEETCODE】66-Plus One
查看>>
【LEETCODE】26-Remove Duplicates from Sorted Array
查看>>
【LEETCODE】118-Pascal's Triangle
查看>>
【LEETCODE】119-Pascal's Triangle II
查看>>
【LEETCODE】190-Reverse Bits
查看>>