您好!
1、dao.js中可以这样定义一个配置文件
```
conf : {
type : "org.nutz.ioc.impl.PropertiesProxy",
fields : {
paths : [ "db/db.properties" ]
}
},
```
在代码中我能够使用这样这样的方式获取配置文件对象吗?
```
@inject("refer:conf")
PropertiesProxy proxy;
```
在项目中,我启动的时候都会报NULL错误。
2、使用了@inject注解声明的字段,该类需要声明为@IOCBEAN吗?
添加回复
请先登陆