随笔 - 388
文章 - 1
评论 - 31
阅读 -
94万
10 2017 档案
Ehcache配置详解及CacheManager使用
摘要:<?xml version="1.0" encoding="UTF-8"?> <ehcache> <!--timeToIdleSeconds 当缓存闲置n秒后销毁 --> <!--timeToLiveSeconds 当缓存存活n秒后销毁 --> <!-- 缓存配置 name:缓存名称。 maxEle
阅读全文
MyBatis Spring整合配置映射接口类与映射xml文件
摘要:本文转自http://blog.csdn.net/zht666/article/details/38706083 Spring整合MyBatis使用到了mybatis-spring,在配置mybatis映射文件的时候,一般会使用MapperScannerConfigurer,MapperScanne
阅读全文
Mybatis中javaType和jdbcType对应关系
摘要:Mybatis中javaType和jdbcType对应关系 Notepad代码 JDBC Type Java Type CHAR String VARCHAR String LONGVARCHAR String NUMERIC java.math.BigDecimal DECIMAL java.ma
阅读全文
Mybatis SqlSessionTemplate 源码解析
摘要:本文摘自http://www.cnblogs.com/daxin/p/3544188.html 在使用Mybatis与Spring集成的时候我们用到了SqlSessionTemplate 这个类。 通过源码我们何以看到 SqlSessionTemplate 实现了SqlSession接口,也就是说我
阅读全文
Jackson 工具类使用及配置指南
摘要:目录 前言 Jackson使用工具类 Jackson配置属性 Jackson解析JSON数据 Jackson序列化Java对象 前言 Json数据格式这两年发展的很快,其声称相对XML格式有很对好处: 容易阅读; 解析速度快; 占用空间更少。 不过,JSON 和 XML两者纠结谁优谁劣,这里不做讨论
阅读全文
Java Code Examples for org.codehaus.jackson.map.DeserializationConfig 配置
摘要:The following code examples are extracted from open source projects. You can click to vote up the examples that are useful to you. Example 1 From proj
阅读全文
jedata日期控件的开始结束日期设置
摘要:<span class="wstxt">开始日期:</span><input type="text" class="workinput wicon" id="inpstart" onclick="$.jeDate(this,{trigger:false,isTime:true,maxDate:$('
阅读全文