(Quick Reference)
dataSource
目的
Purpose
The
dataSource
plugin configures the Grails JDBC
DataSource
.
使用例
Examples
A
DataSource
configured with explicit settings in
grails-app/conf/DataSource.groovy
:
dataSource {
pooled = true
dbCreate = "update"
url = "jdbc:mysql://localhost/yourDB"
driverClassName = "com.mysql.jdbc.Driver"
username = "yourUser"
password = "yourPassword"
}
A
DataSource
configured to look up via JNDI:
dataSource {
jndiName = "java:comp/env/myDataSource"
}
詳細
Description
Refer to the section on
Data Sources in the Grails user guide.
Configured Spring Beans:
dataSource
- An instance of the Apache DBCP library's org.apache.commons.dbcp.BasicDataSource
class or a JndiObjectFactoryBean in the case of a JNDI DataSource