Hola mundo, a continuacion los pasos a seguir:
1. Descargar JDBC de PostgreSQL(http://jdbc.postgresql.org/download.html#current)
2. Copiar ese archivo en la carpeta lib de nuestro Proyecto Grails
3. Despues de ejecutar run-app, abrir el "localhost:8080/Proyecto/dbconsole" y hacer prueba de conexión (Test Connection) con:
Driver Class: org.postgresql.Driver
JDBC URL: jdbc:postgresql:strategy //strategy es mi base de datos
User Name: postgres
Password: postgres
dataSource {
pooled = true
driverClassName = "org.postgresql.Driver"
dialect = "org.hibernate.dialect.PostgreSQLDialect"
username = "postgres"
password = ""
}
// environment specific settings
environments {
development {
dataSource {
dbCreate = "create-drop" // one of 'create', 'create-drop', 'update', 'validate', ''
url = "jdbc:postgresql://localhost:5432/strategy"
}
}
Listo!
Comments
Post a Comment