上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 阅读全文
posted @ 2022-02-17 11:06 雨后丶云初霁 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 一、设置IDEA 中的类注释模板File -> Settings -> Editor -> File and Code Templates -> Files /** * @ClassName ${NAME}.java * @author CW * @createTime ${YEAR}年${MONT 阅读全文
posted @ 2022-02-17 11:04 雨后丶云初霁 阅读(91) 评论(0) 推荐(0) 编辑
摘要: seata-server-1.3.0 配置: file.conf: registry.conf: application.yml配置: 配置中心配置文件: 数据库: 使用: 阅读全文
posted @ 2022-02-13 21:05 雨后丶云初霁 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1.索引长度计算: 1.索引字段,没有设置NOT NULL,则需要加一个字节。 2.定长字段:tinyiny占1个字节、int占4个字节、bitint占8个字节、date占3个字节、datetime占5个字节,char(n)占n个字符。 3.变长字段:varchar(n)占n个字符+2个字节。 4. 阅读全文
posted @ 2021-11-24 11:36 雨后丶云初霁 阅读(137) 评论(0) 推荐(0) 编辑
摘要: List<Paper> list = new ArrayList<>();list.add(new Paper("m",2L));list.add(new Paper("a",1L));list.add(new Paper("j",3L));list.add(new Paper("t",4L));l 阅读全文
posted @ 2021-11-19 10:33 雨后丶云初霁 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 注解类: import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annota 阅读全文
posted @ 2021-09-09 11:39 雨后丶云初霁 阅读(35) 评论(0) 推荐(0) 编辑
摘要: linux下 下载: wget https://www.emqx.io/downloads/broker/v3.2.1/emqx-centos7-v3.2.1.zip 解压:unzip emqx-centos7-v3.2.1.zip 启动:./emqx start 配置文件修改: /usr/loca 阅读全文
posted @ 2021-08-05 17:14 雨后丶云初霁 阅读(889) 评论(0) 推荐(0) 编辑
摘要: /** * 正则表达式字符串替换 * @param content 字符串 * @param pattern 正则表达式 * @param newString 新的替换字符串 * @return 返回替换后的字符串 */public static String regReplace(String c 阅读全文
posted @ 2021-07-17 16:52 雨后丶云初霁 阅读(58) 评论(0) 推荐(0) 编辑
摘要: <!--汉语拼音--><dependency> <groupId>com.belerweb</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.0</version></dependency> /** * @Description: * 阅读全文
posted @ 2021-07-14 15:29 雨后丶云初霁 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 官方文档地址:https://www.hutool.cn/docs/#/ pom: <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.5.2</version></depe 阅读全文
posted @ 2021-06-24 17:18 雨后丶云初霁 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页