普通的 spring 项目可以用.yml 当配置文件吗?具体怎么实现?
資深大佬 : Guidoo 0
不是 springboot 项目哈。 有个老项目,ssm 框架,想用 yml
大佬有話說 (7)
不是 springboot 项目哈。 有个老项目,ssm 框架,想用 yml
<bean id=”yamlProperties” class=”org.springframework.beans.factory.config.YamlPropertiesFactoryBean”>
<property name=”resources” value=”classpath:test.yml”/>
</bean>
<context:property-placeholder properties-ref=”yamlProperties”/>
“`