org.hibernate.exception.GenericJDBCException:无法打开连接],原因是java.sql.SQLException:

时间:2015-03-19 11:06:01

标签: spring hibernate

你好我还是新的spring和hibernate这是我的第一个应用程序试着连接到db但我得到的除了HTTP状态500 - 请求处理失败;嵌套异常是org.hibernate.exception.GenericJDBCException:无法打开连接 并在控制台:org.hibernate.exception.GenericJDBCException:无法打开连接]与根本原因java.sql.SQLException: 用户'root'@'localhost'拒绝访问(使用密码:YES) 任何人都可以帮助我PLZ我切断了与其他java应用程序完美配合的连接!

database.properties

 database.driver=com.mysql.jdbc.Driver
  database.url=jdbc:mysql://localhost:3306/DAVDB
 database.user=root
 database.password=''
 hibernate.dialect=org.hibernate.dialect.MySQLDialect
 hibernate.show_sql=true
 hibernate.hbm2ddl.auto=update

1 个答案:

答案 0 :(得分:0)

您的database.properties不正确:

database.password=''

应该是:

database.password=

假设您想要一个空密码。引用在属性文件中没有特殊含义,因此它们将被视为文字。