想要飞的小乌龟2022-08-04 技术文章 [ERROR] You have enabled the binary log, but you haven't provided the mandatory server-id.... 解决方式:修改my.cnf文件如下 log-bin=mysql-bin server-id=1 2022-08-04 716 阅读 阅读全文
想要飞的小乌龟2022-08-04 技术文章 linux 在线完美安装mysql2.7.22 1、下载tar包,可直接服务器在线下载wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz2、将mysql安装到/usr/local/mysql下# 解压t 2022-08-04 148 阅读 阅读全文
想要飞的小乌龟2022-08-04 技术文章 JDBC常用API和使用 一、JDBC 常用 API1、Connection 接口方法名称功能描述getMetaData()该方法用于返回数据库的元数据的 DatabaseMetaData 对象createStatement用 2022-08-04 194 阅读 阅读全文
想要飞的小乌龟2022-08-04 技术文章 jdk 1.8新特性 流式字符串转list<Long> String ids= "1,2,3,4,5,6"; List<Long> listIds = Arrays.asList(ids.split(",")).stream().map(s -> Long. 2022-08-04 529 阅读 阅读全文