不是 springboot 项目哈。 有个老项目,ssm 框架,想用 yml
1
hantsy 2020-05-31 17:07:28 +08:00
记得可以自己实现一个 AbstractGenericContextLoader,设置定义文件后缀和相应的 BeanDefinitionReader 。
|
2
chendy 2020-05-31 17:20:23 +08:00
把 spring-boot 里读 yml 文件的部分抄进来就行了…
|
3
shylockhg 2020-05-31 17:28:35 +08:00
额非 java 程序员,不是读一下 yaml 就可以么
|
5
aitaii 2020-05-31 18:26:17 +08:00 via Android
snakeyaml
|
6
DsuineGP 2020-06-01 09:11:57 +08:00
```xml
<context:annotation-config/> <bean id="yamlProperties" class="org.springframework.beans.factory.config.YamlPropertiesFactoryBean"> <property name="resources" value="classpath:test.yml"/> </bean> <context:property-placeholder properties-ref="yamlProperties"/> ``` |
7
qW7bo2FbzbC0 2020-06-01 13:09:40 +08:00
用来用去,还是 toml 舒服点,yaml 的锁紧和列表语法太头疼
|