上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页
摘要: spring 整合 mybatis 报错信息 java.lang.NoClassDefFoundError: org/apache/commons/pool/KeyedObjectPoolFactory 找不到commons-pool, 添加commons-pool-1.6依赖 <dependenc 阅读全文
posted @ 2021-10-10 08:14 唏嘘- 阅读(190) 评论(0) 推荐(0)
摘要: spring 整合 mybatis 查询数据库报错 java.lang.NoClassDefFoundError: org/springframework/dao/support/DaoSupport 缺少jar包 添加如下jar包 <dependency> <groupId>org.springf 阅读全文
posted @ 2021-10-10 08:11 唏嘘- 阅读(958) 评论(0) 推荐(0)
摘要: 1、SpringBoot 项目 (1)、 Resource resource = new ClassPathResource("template/xixu.png"); // template 前面不要加 / File file = resource.getFile(); (2)、 String p 阅读全文
posted @ 2021-10-09 09:46 唏嘘- 阅读(591) 评论(0) 推荐(0)
摘要: 报错信息: Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'XXX' which is not functionally dependent on columns in 阅读全文
posted @ 2021-09-17 11:35 唏嘘- 阅读(105) 评论(0) 推荐(1)
摘要: 例如下载地址: https://az764295.vo.msecnd.net/stable/fd6f3bce6709b121a895d042d343d71f317d74e7/VSCodeUserSetup-x64-1.54.2.exe 将下载地址修改为国内镜像的下载地址 vscode.cdn.azu 阅读全文
posted @ 2021-09-16 20:46 唏嘘- 阅读(437) 评论(0) 推荐(0)
摘要: 开启了bin-log, 我们就必须指定我们的函数是否是: 1 DETERMINISTIC 确定性的 2 NO SQL 没有SQl语句,当然也不会修改数据 3 READS SQL DATA 只是读取数据,当然也不会修改数据 4 MODIFIES SQL DATA 要修改数据 5 CONTAINS SQ 阅读全文
posted @ 2021-09-16 20:37 唏嘘- 阅读(1310) 评论(0) 推荐(0)
摘要: 默认情况下,mysql只允许本地登录,如果要开启远程连接,则需要修改/etc/mysql/my.conf文件。 1、修改/etc/mysql/my.conf 找到bind-address = 127.0.0.1这一行改为bind-address = 0.0.0.0即可 2、为需要远程登录的用户赋予权 阅读全文
posted @ 2021-09-07 17:53 唏嘘- 阅读(1290) 评论(0) 推荐(0)
摘要: 错误原因: 使用Navicat Premium 12连接MySQL数据库时会出现Authentication plugin 'caching_sha2_password' cannot be loaded的错误。 mysql8 之前的版本中加密规则是mysql_native_password,而在m 阅读全文
posted @ 2021-09-07 17:45 唏嘘- 阅读(155) 评论(0) 推荐(0)
摘要: 1、pom <packaging>pom</packaging> 【父类型都为pom类型】 打出来可以作为其他项目的maven依赖,在工程A中添加工程B的pom,A就可以使用B中的类。用在父级工程或聚合工程中。用来做jar包的版本控制。 2、jar(默认为jar) <packaging>jar</p 阅读全文
posted @ 2021-09-07 16:13 唏嘘- 阅读(266) 评论(0) 推荐(0)
摘要: 1.开启 web 端口 firewall-cmd --permanent --add-port=80/tcp 2、重启 firewall firewall-cmd --reload 阅读全文
posted @ 2021-09-07 15:03 唏嘘- 阅读(158) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页