dao.js 506 B

123456789101112131415161718192021
  1. var ioc = {
  2. dataSource: {
  3. type: "com.alibaba.druid.pool.DruidDataSource",
  4. events: {
  5. create: "init",
  6. depose: "close"
  7. },
  8. fields: {
  9. url: "jdbc:mysql://127.0.0.1:3306/luxnktask",
  10. username: "root",
  11. password: "",
  12. testWhileIdle: true,
  13. maxActive: 100,
  14. maxWait: 15000
  15. }
  16. },
  17. dao: {
  18. type: "org.nutz.dao.impl.NutDao",
  19. args: [{refer: "dataSource"}]
  20. }
  21. }