1、找到web.xml中DispatcherServlet配置项的那个xml文件
2、我这里是叫做found-servlet.xml,在xml中添加配置
<bean id="sourcePropertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:dubbo.properties</value>
<value>classpath:mq.properties</value>
<value>classpath:console.properties</value> //这个是我要用到Valuede
</list>
</property>
</bean>