摘要:
一、mapper接口中的方法解析 mapper接口中的函数及方法 方法功能说明 int countByExample(UserExample example) thorws SQLException 按条件计数 int deleteByPrimaryKey(Integer id) thorws SQ 阅读全文
摘要:
<sql> 和 <include> <sql>用来封装SQL语句, <include>来调用 代码片段:<sql id="select">SELECT * FROM `body_index`</sql> <select id="find" resultType="*" resultMap="*"> 阅读全文
摘要:
标准写法如下: 第一种写法(1): 原符号 < <= > >= & ' " 替换符号 < <= > >= & ' " 例如:sql如下: create_date_time >= #{startTime} and create_date_tim 阅读全文
摘要:
感谢www.baidu.com/p/dongfanghong_1 sql大神,简单的语法运用起来简直活了。第一法】 select * from table where name='D' UNION ALL select * from table where name<>'D' 第二法】 SELECT 阅读全文
摘要:
Jackson,我感觉是在Java与Json之间相互转换的最快速的框架,当然Google的Gson也很不错,但是参照网上有人的性能测试,看起来还是Jackson比较快一点 Jackson处理一般的JavaBean和Json之间的转换只要使用ObjectMapper 对象的readValue和writ 阅读全文