ActiveRecord模式 AR探索: 1.继承Model<表对应的对象名称> 注意:有警告:使用@EqualAndHashCode(callSuper=false)注解,可以解除警告 2继承Mapper<表对应的对象名称>接口 @Test public void insertTest2() { ...
分类:
其他好文 时间:
2019-11-23 23:39:54
阅读次数:
95
一,扩展运算符的使用场景 1.复制数组 let arr1=[1,2]; let arr2=[...arr1]; arr2[0]=44; console.log(arr2,"arr2");[44,2] console.log(arr1,"arr1") //[1,2] //如果用es5 则用let ar ...
分类:
其他好文 时间:
2019-11-23 16:31:35
阅读次数:
96
Spring Boot默认使用Tomcat作为嵌入式的Servlet容器,只要引入了spring-boot-start-web依赖,则默认是用Tomcat作为Servlet容器: <dependency> <groupId>org.springframework.boot</groupId> <ar ...
分类:
编程语言 时间:
2019-11-21 11:41:38
阅读次数:
70
replication相关概念: ISR(In-Sync Replicas):副本同步列表【包含Leader和Follower】 OSR(Outof-Sync Replicas):由于同步落后而被剔除的副本列表,阈值参数:replica.lag.time.max.ms AR(Assigned Rep ...
分类:
其他好文 时间:
2019-11-20 21:26:36
阅读次数:
103
创建 Scanner 对象的基本语法: Scanner s = new Scanner(System.in); Scanner 类的 next() 方法 import java.util.Scanner; class Test{ public static void main(String[] ar ...
分类:
编程语言 时间:
2019-11-19 17:28:00
阅读次数:
74
1.首先pom 文件 <! jetty插件 > <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty maven plugin</ar ...
分类:
其他好文 时间:
2019-11-15 13:57:44
阅读次数:
103
1、交叉编译 # tar -xvf sudo-1.8.6p7.tar.gz # cd sudo-1.8.6p7/ # mkdir build # ./configure --prefix=/home//sudo-1.8.6p7/build/ CC=aarch64-linux-gnu-gcc AR=a ...
分类:
其他好文 时间:
2019-11-12 13:07:36
阅读次数:
112
在springboot工程下的pom.xml中添加依赖 <!--分页 pagehelper --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</ar ...
分类:
编程语言 时间:
2019-11-09 19:45:10
阅读次数:
110
题目连接:https://atcoder.jp/contests/agc040/tasks/agc040_b 题意:有N个问题,每个问题可以由编号L~R之间的人完成,有两个集合S和T,将N个问题放入两个集合中,使得交集和最大 题解:https://blog.csdn.net/duanghaha/ar ...
分类:
其他好文 时间:
2019-11-08 14:02:57
阅读次数:
179
一:父 ==> 子, props1:props 类型 props: { num: { type: Number, default: 0 }, str: { type: String, default: '' }, bool: { type: Boolean, default: false }, ar ...
分类:
其他好文 时间:
2019-11-06 16:58:56
阅读次数:
118