mybatis实现表与表之间的查询,将查询的结果集进行映射(reslutType/resultMap高级映射) 1.首先分析表与表之间的关系.步骤如下: 1) 按模块去分析表,不要一次全部分析 2)了解每个表存储了什么业务数据 3)了解表中关键字段(主键/外键/索引字段/非空字段) 4) 了解表与表 ...
分类:
其他好文 时间:
2018-01-13 20:53:55
阅读次数:
151
前面的博客中我们知道了 Windows AD域的升级,下面我谈谈Windows域的安装和卸载。 前面的博客中我们知道了 Windows AD域的升级,下面我谈谈Windows域的安装和卸载。 卸载AD域 配置备份AD域 卸载AD域 配置备份AD域 安装子域 安装子域 删除子域(必须在根域管理员模式下 ...
1 # encoding: utf-8 2 3 # None与0都为False 4 print(bool(None)) 5 print(bool(0)) 6 7 # 短路运算符规则 8 # 假与取左 9 print(0 and 90) 10 11 # 真或取左 12 print(90 or 43) ... ...
分类:
编程语言 时间:
2018-01-13 20:53:39
阅读次数:
152
用户和权限基本概念;组概念;ls -l 详解;chmod命令; ...
分类:
其他好文 时间:
2018-01-13 20:53:33
阅读次数:
938
A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the ...
分类:
其他好文 时间:
2018-01-13 20:53:25
阅读次数:
104
问题现象:问题定位:应该是环境变量的问题find/-nameSSHCheck.pm/usr/lib/perl5/vendor_perl/MHA/SSHCheck.pm将相关路径加入PERL5LIB后,问题解决(根本原因是MHA和OS版本不匹配)。exportPERL5LIB=$PERL5LIB:/usr/lib/perl5/vendor_perl/
分类:
其他好文 时间:
2018-01-13 20:53:19
阅读次数:
173
官方文档里给了两种方法 1.创建一个Model,然后用一对一外键指到User,这样就相当于是扩展了User,简单又实用。 但是这样没法自定义User的save和delete函数(当然你直接去改django源码也是可以的,我之前就是这么干的,但是改源码这种事情实在是不靠谱),所以我就用了另一种方法 2 ...
分类:
其他好文 时间:
2018-01-13 20:53:11
阅读次数:
153
1 # coding: utf-8 2 3 a = 3434 4 b = 456787654567876545678765456767687878 5 price = 32.43 6 name = 'marry' 7 8 # 输出数据类型 9 print(type(a)) 10 print(type... ...
分类:
编程语言 时间:
2018-01-13 20:53:03
阅读次数:
181
pycharm中直接setting是没办法成功的,会提示is requied C++ bool.....先进入那个页面安装好需要的tools,这个安装比较慢:http://landinghub.visualstudio.com/visual-cpp-build-tools 然后进入当前项目的env: ...
分类:
其他好文 时间:
2018-01-13 20:52:56
阅读次数:
1278
Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child i has a g ...
分类:
其他好文 时间:
2018-01-13 20:52:49
阅读次数:
151
1 # encoding: utf-8 2 3 # 字符串转义 4 s = 'I\'m ok' 5 print(s) 6 s = 'Learn \"Python\" in imooc' 7 print(s) 8 s = 'Bob said \"I\'m ok\"' 9 print(s) 10 11 ... ...
分类:
编程语言 时间:
2018-01-13 20:52:40
阅读次数:
154
JAVA 基础开发环境 vscode 搭建 来源 https://www.cnblogs.com/freewsf/p/7744728.html 对于使用 Visual Studio Code 的 Java 开发者来说,Language Support for Java(TM) by Red Hat ...
分类:
编程语言 时间:
2018-01-13 20:52:32
阅读次数:
2823
#__author: hasee #date: 2018/1/13 # 有10个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),凡报到3的人退出圈子 # 设计一个程序计算最后留下的是原来第几号的那位 # 答案:4 # 让10个人围成一圈 l1 = [1, 2, 3, 4, 5, 6, 7,... ...
分类:
其他好文 时间:
2018-01-13 20:52:25
阅读次数:
151
弹性盒(flexbox, flexible box的简称)为css添加了一种新的布局模式,即弹性布局。 弹性盒提供了很多有用的属性,不需要使用浮动或者line-block值就能把多个元素排成一行。建立弹性盒子首先要提供两个组件。1. 弹性容器,建立弹性容器很简单,把div的display属性写成fl ...
分类:
Web程序 时间:
2018-01-13 20:52:16
阅读次数:
167
前端获取图片压缩后上传给后台 此前有同事跟我聊过关于移动端用canvas压缩图片后再上传的功能,最近有了点空闲时间,所以就实践了一下。demo效果链接在文章底部贴出。 在做移动端图片上传的时候,用户传的都是手机本地图片,而本地图片一般都相对比较大,拿iphone6来说,平时拍很多图片都是一两M的,如 ...
分类:
Web程序 时间:
2018-01-13 20:51:56
阅读次数:
222
Given an array of scores that are non-negative integers. Player 1 picks one of the numbers from either end of the array followed by the player 2 and t ...