http://stackoverflow.com/questions/32042726/what-is-the-proper-syntax-for-the-less-than-equal-operator-in-mybatis-3 I show examples for the Greater Th ...
分类:
数据库 时间:
2016-12-12 01:30:46
阅读次数:
264
1.用java自带的IO读写方法 官方API网站:http://docs.oracle.com/javase/7/docs/api/ 2.Apache的Commons-io-2.4.jar中的方法,参考文档:http://commons.apache.org/proper/commons-io/ja ...
分类:
其他好文 时间:
2016-12-04 17:27:00
阅读次数:
243
一、类的扩展方法 1.静态方法 语法:@staticmethod,静态方法不能访问公有属性,不能访问类。可在实例化后直接调用,并且在方法里可以通过self.调用实例变量或类变量。 2.类方法 语法:@classmethod,只能访问类的公有属性,不能访问实例属性。 3.属性方法 语法:@proper ...
分类:
编程语言 时间:
2016-11-28 22:57:01
阅读次数:
225
springboot可以提供了多种方式配置properties。 一、Java System.setProperty(k, v) 二、在classpath目录下创建配置文件 application.properties 文件内容格式是 KV格式 三、支持嵌套注解 application.proper ...
分类:
编程语言 时间:
2016-11-27 20:15:32
阅读次数:
182
本题来自 Project Euler 第21题:https://projecteuler.net/problem=21 首先需要明确两个数学概念: 真因数(proper divisor):除去数字本身的所有因数(不要求是素数)。比如:12的所有真因数是:1、2、3、4、6 亲和数(amicable ...
分类:
编程语言 时间:
2016-11-20 00:02:46
阅读次数:
306
第一步、下载Jar包(commons-lang.jar) 下载地址:http://commons.apache.org/proper/commons-lang/download_lang.cgi 第二步、测试代码 1.HTML 转义 输出:<div></div> 反转义 输出 ...
分类:
其他好文 时间:
2016-11-03 13:25:33
阅读次数:
251
public class CommonFunc { /** * 取properties文件中的键值对 */ public static String getProperties(String param) throws Exception { Properties prop = new Proper ...
分类:
其他好文 时间:
2016-11-01 18:47:32
阅读次数:
124
ZC: 创建一个JSP之后,就报如下错误。 1、错误: 1.1、 2、处理: Exlipse for JEE --> Project Explorer 中选择项目 --> 右击项目名 --> Build Path --> Configure Build Path... --> 在出现的“Proper ...
分类:
Web程序 时间:
2016-10-21 10:41:53
阅读次数:
225
We start with the fuzzy binomial. Then we discuss the fuzzy Poisson probability mass function. Fuzzy Binomial Let $E$ be a non-empty, proper subset of ...
分类:
其他好文 时间:
2016-10-15 11:34:39
阅读次数:
124
这篇小菜给大家演示和讲解一些Elasticsearch的API,如在工作中用到时,方便查阅。一、IndexAPI创建索引库curl-XPUT‘http://127.0.0.1:9200/test_index/‘-d‘{
"settings":{
"index":{
"number_of_shards":3,
"number_of_replicas":1
}
},
"mappings":{
"type_test_01":{
"proper..