您好我无法连接到spring roo项目中的数据库。我的错误是错误 org.hibernate.util.JDBCExceptionReporter - 未选择数据库
org.hibernate.exception.GenericJDBCException: could not execute query;
nested exception is javax.persistence.PersistenceException:
org.hibernate.exception.GenericJDBCException: could not execute query
我的Database.properties文件
database.password=test@
database.url=jdbc\:mysql\://yahoo.com:3306
database.username=arv_aaa
database.schemaNames=ar@1
database.driverClassName=com.mysql.jdbc.Driver
答案 0 :(得分:5)
只需修正以下行:
database.url=jdbc\:mysql\://yahoo.com:3306
并按以下方式添加一些数据库:
database.url=jdbc\:mysql\://yahoo.com:3306/mydb
希望这有帮助!