// 读取配置文件
config : {
type : "org.nutz.ioc.impl.PropertiesProxy",
fields : {
paths : ["myapp.properties"]
}
},
问答
PropertiesProxy读取配置文件 并没有paths这个属性,为什么是按fields注入呢?
标签:
无
4 回复
@wendal 这样可以不
config : {
type : "org.nutz.ioc.impl.PropertiesProxy",
args : [
["myapp.properties"]
]
},
@luspariott 先试后问
@wendal 哈哈这样可以了 3q
config : {
type : "org.nutz.ioc.impl.PropertiesProxy",
args : ["myapp.properties","...","..."]
},
添加回复
请先登陆