看这里,若是遇到如下问题:Access denied for user 'Administrator'@'localhost' (using password: YES)
原因一:
密码错误或者配置文件中对应的name错了,或者value错了
原因二:
这个是因为你写的properties文件不符合规范,改成如下就可以了:
jdbc.propertis
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/seckill?useUnicode=true&characterEncoding=utf8
user=root
password=123
对应的配置连接池属性也要改。