- // Place your Spring DSL code here
- import org.apache.commons.dbcp.BasicDataSource
- beans = {
- dataSource(BasicDataSource) {
- // driverClassName = "org.hsqldb.jdbcDriver"
- // url = "jdbc:hsqldb:mem:devDB"
- // username = "sa"
- // password = ""
- driverClassName = "com.mysql.jdbc.Driver"
- url = "jdbc:mysql://localhost:3306/CI?useUnicode=true&characterEncoding=UTF-8"
- username = "root"
- password = "000"
- }
- }