我正在尝试使用 DBeaver 3.6.3 连接到远程 MySQL 数据库。但是,当我尝试将服务器添加为新连接时,我需要选择一种连接类型,在那里我选择 MySQL,只要我点击下一步,它就会给我这个错误

我已尝试将驱动程序设置恢复为默认值 - 无效 我已尝试删除用户中的元数据文件夹并重新启动 - 无效
如果有人对我可以做些什么来获得正确的数据库驱动程序有任何建议,我将不胜感激:-)
问候天恩
我目前正在开展一个学校项目,我们必须创建自己的"Twitter"应用程序,并且我在域对象的持久性方面遇到了一些麻烦.
我的帐户类(为便于阅读而简化):
@Entity
public class Account implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
private Long id;
@Column(unique = true)
private String email;
@OneToMany
private final List<Account> following = new ArrayList<>();
@OneToMany(mappedBy = "tweetedBy", cascade = ALL)
private final List<Tweet> tweets = new ArrayList<>();
Run Code Online (Sandbox Code Playgroud)
我的推文类(为便于阅读而简化):
@Entity
public class Tweet implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
private Long id;
private String content;
@ManyToOne
private Account tweetedBy;
@OneToMany(cascade = CascadeType.PERSIST)
@JoinTable(name = "tweet_likes")
private final List<Account> likedBy = new ArrayList<>();
@OneToMany(cascade = …Run Code Online (Sandbox Code Playgroud)