手册中写
* 在 Ioc 中使用
文件池当然可以被任何 Ioc 容器管理,下面我们以 Nutz.Ioc 的 JSON 配置方式来举例:
{
pool : {
type : 'org.nutz.filepool.NutFilePool',
args : ['~/tmp/files', 2000]
}
}
我想熟悉 Spring 或者 Guice 的朋友,怎么配置自然不用我多嘴了吧*
我照着配置,运行始终报object nutFilePool not define的错
改成
{
nutFilePool : {
type : 'org.nutz.filepool.NutFilePool',
args : ['~/tmp/files', 2000]
}
}
就成功了,始终没有想明白为什么会这样