修改了数据库连接 可是db类型依然是
# 使用的数据库类型,根据db.type的值,下面对应类型的数据库连接要配置正确
db.type = mysql
#db.type = postgresql
#db.type = oracle
#db.type = sqlserver
#db.type = db2
# 使用postgresql数据库
postgresql.driverClass = org.postgresql.Driver
postgresql.jdbcUrl = jdbc:postgresql://127.0.0.1:5432/jfinaluibv3
postgresql.userName = postgres
postgresql.passWord = 678789
# 使用mysql数据库
mysql.driverClass = com.mysql.jdbc.Driver
mysql.jdbcUrl = jdbc:mysql://127.0.0.1:3306/mydb?characterEncoding=UTF-8&autoReconnect=true&failOverReadOnly=false&zeroDateTimeBehavior=convertToNull
mysql.userName = root
db.type = mysql
#db.type = postgresql
#db.type = oracle
#db.type = sqlserver
#db.type = db2
# 使用postgresql数据库
postgresql.driverClass = org.postgresql.Driver
postgresql.jdbcUrl = jdbc:postgresql://127.0.0.1:5432/jfinaluibv3
postgresql.userName = postgres
postgresql.passWord = 678789
# 使用mysql数据库
mysql.driverClass = com.mysql.jdbc.Driver
mysql.jdbcUrl = jdbc:mysql://127.0.0.1:3306/mydb?characterEncoding=UTF-8&autoReconnect=true&failOverReadOnly=false&zeroDateTimeBehavior=convertToNull
mysql.userName = root
mysql.passWord = shili2000
这样修改了数据库连接 依然提示
create connection error, url: jdbc:postgresql://127.0.0.1:5432/jfinaluibv3, errorCode 0, state 08001
org.postgresql.util.PSQLException: Connection to 127.0.0.1:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
时隔多年 回头看了看自己问的问题 原来是下边的 链接配置 没注释掉
按楼上的来,你用mysql客户端连了试试,也连不上,那就是网络问题
确认一下:
1)确认你的防火墙是否关闭
2)确认你的授权是否是trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust