1 Mybatis的缓存机制介绍
2 准备工作
3 一级缓存
4 二级缓存 ...
分类:
其他好文 时间:
2020-09-17 23:35:07
阅读次数:
27
1、安装 mariadb-install-db.exe mysqld install 2、修改utf8编码 [mysqld] default-storage-engine = innodb innodb_file_per_table max_connections = 4096 collation- ...
分类:
数据库 时间:
2020-09-17 19:21:40
阅读次数:
38
1.修改数据库配置database.properties文件 jdbc.url=jdbc:mysql://localhost:3306/hippo?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull jd ...
分类:
其他好文 时间:
2020-09-17 17:27:26
阅读次数:
27
# -*- coding:utf-8 -*- ############################# # pip install pycryptodome ############################# import base64 from Crypto import Random ...
分类:
其他好文 时间:
2020-09-17 15:31:40
阅读次数:
26
1 Canal环境准备 1.1 docker安装数据库 配置文件 [root@other example]# cat /mydata/mysql/master/conf/my.cnf [client] default-character-set=utf8 [mysql] default-charac ...
分类:
其他好文 时间:
2020-09-17 13:47:43
阅读次数:
26
# 导入MySQL import pymysql # 连接数据库 conn = pymysql.connect(host="111.111.111.111", user="11111", password="1111111", port=3306, db="11111",charset="utf8" ...
分类:
数据库 时间:
2020-09-17 13:25:32
阅读次数:
41
常量池的项目类型 类 型 标 志 描 述 CONSTANT_Utf8_info 1 UTF-8编码的字符串 CONSTANT_Integer_info 3 整型字面量 CONSTANT_Float_info 4 浮点型字面量 CONSTANT_Long_info 5 长整形字面量 CONSTANT_ ...
分类:
其他好文 时间:
2020-09-10 22:32:26
阅读次数:
42
DROP TABLE IF EXISTS `dudept`; CREATE TABLE `dudept` ( `Id` int(11) NOT NULL AUTO_INCREMENT comment 'ID', `deptCode` varchar(10) CHARACTER SET utf8 CO ...
分类:
数据库 时间:
2020-09-09 19:03:37
阅读次数:
60
UTF8编码转换为GB2312编码字符集时,需要明确以下两点: UTF8是编码格式,而GB2312是字符集,UTF8可以动态的表示1到6字节的编码范围,其还原后可以是双字节Unicode UTF16(USC2)字符集,也可以是四字节Unicode UTF32(USC4)字符集,四字节以上的很少用到可 ...
分类:
编程语言 时间:
2020-09-07 19:08:46
阅读次数:
94
我的情况: 没有部署前的spring boot项目:前台请求的参数编码格式是utf8在打成jar包后:前台请求的参数编码格式是gbk 代码: String str = new String(reqUrl.getBytes(), "gbk");byte[] bytes = str.getBytes(S ...
分类:
编程语言 时间:
2020-08-20 19:22:14
阅读次数:
81