☆☆☆注意添加配置的时候: web.xml要能扫描到配置文件☆☆☆
方法一
1.在resources 文件夹中编写file.properties
2.在springmvc中编写:
<bean id="prop" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:file.properties</value>
</list>
</property>
</bean>
3.在controller中引用
在Java中使用这个@Value("${ }")注解 读取 properties中的参数
方法二(推荐用这个,这个用的比较多,也比较简洁)
<context:property-placeholder location="classpath:file.properties"/>
如果有多个自定义配置文件,也支持通配符
<context:property-placeholder location="classpath:*.properties"/>
在Java中使用这个@Value("${ }")注解 读取 properties中的参数
原文链接:https://blog.csdn.net/weixin_45012575/article/details/95799754