具体报错信息: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter '__frch_ecoYksKpi_0' not found. Available parameters are [list, param1] at org.mybatis.spring.MyBatisExceptionTranslator.tran
当mysql数据库安装时候选择的是加密密码时候,用navicat连接时候报错1521,这时候可以cmd之后登陆mysql执行下列代码就可以了 代码: mysql> alter user root@localhost identified by 'root' password expire never;mysql> alter user root@localhost identified with mysql_native_password by 'root' ;mysql> flush
spring boot 2.0.3启动报错: Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2018-10-24 14:49:06.108 ERROR 14932 --- [ main] o.s.boot.SpringApplication : Application run failed org.springfra
本文首发于青云工作室 原文链接为 https://qystudio.ltd/posts/55153.html 缘起 今天我升级了gulp到4.0,在git三件套之后,网站并没有更新,我便登录了github查看action的运行状况,便有此文 问题 在查看了日志最后发现了如下报错 Did you forget to signal async completion? 在查看了gulp官网之后我人傻了,全是英文 这是一个新特性,简单来说就是原因: gulp 不再支持同步任务了. 因为同步任务常常会导致
mysql8远程登录报错Client does not support authentication protocol requested by server; consider upgrading MySQL client 原因: 安装mysql8过程中的Authentication Method这一配置过程,基于不同的加密方式,如果选择第一种强加密,就会出现我之前描述的现象:应该选第二种验证方式,即保留旧有的加密方式. mysql> ALTER USER 'root'@'localhost'