schema约束 1.xsd person.xml schema约束 ...
分类:
其他好文 时间:
2019-06-27 21:55:49
阅读次数:
126
1. 在工作空间,右键,打开Git Bash 2. clone主分支的代码(即下载主分支代码的过程)执行命令: git clone xxx.git3. 进入工程目录cd xxx 4.I believe this occurs when you are trying to checkout a rem ...
分类:
其他好文 时间:
2019-06-17 15:32:57
阅读次数:
259
Queues and Priority Queues are data structures which are known to most computer scientists. The Queue occurs often in our daily life. There are many p ...
分类:
其他好文 时间:
2019-06-10 11:52:10
阅读次数:
85
A character is unique in string S if it occurs exactly once in it. For example, in string S = "LETTER", the only unique characters are "L" and "R". Le ...
分类:
其他好文 时间:
2019-04-28 09:42:03
阅读次数:
118
1. <definitions/> 这部分在基础篇里已经介绍,主要说明引用了哪些schema以及schema的位置等,可以看下基础篇的介绍,SayHello的Demo这部分内容如下: 2. <types/> <types> 元素定义 web service 使用的数据类型,为了最大程度的平台中立性, ...
分类:
Web程序 时间:
2019-04-06 20:30:34
阅读次数:
253
内表声明:内表分为三种 标准、排序、哈希 "标准内表,自带表头,有些人觉得新版本不应该使用此方法,但这个确实好用。 DATA:BEGIN OF T_ITAB OCCURS 0, SID TYPE C, SPINT TYPE I, END OF T_ITAB. "另一种 TYPES: BEGIN OF ...
分类:
其他好文 时间:
2019-04-06 09:51:32
阅读次数:
106
当我们定义一个协变类型List[A+]时,List[Child]可以是List[Parent]的子类型。 当我们定义一个逆变类型List[-A]时,List[Child]可以是List[Parent]的父类型。 Scala的协变 看下面的例子: c不能赋值给c2,因为Covariant定义成不变类型 ...
分类:
其他好文 时间:
2019-03-30 20:14:38
阅读次数:
172
Occurs just before the data is written to the record buffer. Write an OnValidate event handler to validate changes made to the data in the field, just ...
分类:
其他好文 时间:
2019-03-22 18:29:58
阅读次数:
114
前言 做后台的,Filter肯定没少配置,但是知晓其原理的可能不多。在这之前我也不懂,但这并不影响业务开发,同时也有其他的知识要学,所以一直就没看。这阵子有点闲,刚好在看《How Tomcat Works》的PipeLine相关内容。索性好好梳理一下FilterChain相关的知识。 类图 Filt ...
分类:
其他好文 时间:
2019-03-21 21:37:05
阅读次数:
239
threadpool源码学习 WorkerThread WorkerThread(requests_queue, results_queue) 将实例化一个线程对象,实例化后就会执行自身的run方法。 run方法里执行一个while循环,一直去requests_queue取任务(WorkReques ...
分类:
其他好文 时间:
2019-02-15 15:29:23
阅读次数:
103