Advertisement
Guest User

Untitled

a guest
Aug 29th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.60 KB | None | 0 0
  1. environments {
  2.     development {
  3.         dataSource {
  4.             dbCreate = "update" // one of 'create', 'create-drop', 'update', 'validate', ''
  5.             url = "jdbc:mysql://localhost/frontdesk2db?useUnicode=yes&characterEncoding=UTF-8"
  6.             username = "root"
  7.             password = "admin"
  8.  
  9.             pooled = true
  10.             properties {
  11.                 jmxEnabled = true
  12.                 initialSize = 5
  13.                 maxActive = 200
  14.                 minIdle = 20
  15.                 maxIdle = 100
  16.                 maxWait = 10000
  17.                 ...
  18.             }
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement