错误提示挺明确的啊,第一个参数没有指定值,或者没有值啊
目测推断是你的mysql链接信息中的url参数缺少不全造成的,尤其是useSSL=false,建议在你的数据库url拼接上?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2b8,例如
jdbc:mysql://localhost:3306/db?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2b8
其他报错信息呢
你数据库软件安装了吗
No value specified for parameter 1: 意思是你的sql语句中,查询条件需要传入一个值,但是你没有传。