| 123456789101112131415161718192021 |
- var ioc = {
- dataSource: {
- type: "com.alibaba.druid.pool.DruidDataSource",
- events: {
- create: "init",
- depose: "close"
- },
- fields: {
- url: "jdbc:mysql://127.0.0.1:3306/luxnktask",
- username: "root",
- password: "",
- testWhileIdle: true,
- maxActive: 100,
- maxWait: 15000
- }
- },
- dao: {
- type: "org.nutz.dao.impl.NutDao",
- args: [{refer: "dataSource"}]
- }
- }
|