第一个问题
-
```java.sql.SQLException: Access denied for user 'Administrator'@'localhost' (using password: YES)``` 出现这个问题肯定是 配置 没有配置正确。 经排查发现问题如下:
###第二个问题 2. java.sql.SQLException: No suitable driver
出现这个问题有两种可能性:
1. 可能是 数据库的 连接包 不正确 。 将所有的数据包 清除 ,然后 排除重复 , 重新导入即可。 2. 也可能是** url **的配置不正确 , 当时我所要连接 的数据库 的 url 为
jdbc:mysql://localhost:3306/activiti_o2
而我将其输入成
jdbc:mysql://localhost:3306/activiti_02 ```
因此产生了错误。
另外还容易出现问题的地方是 将 **url** 写成
jdbc:mysql:\localhost:3306/3306/
即把 ** " / " ** 写成 ** “ \ ” ** 从而出现错误