e2

滴滴侠,fai抖

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2018年2月27日

摘要: 一、mapper接口中的方法解析 mapper接口中的函数及方法 方法功能说明 int countByExample(UserExample example) thorws SQLException 按条件计数 int deleteByPrimaryKey(Integer id) thorws SQ 阅读全文
posted @ 2018-02-27 23:02 纯黑Se丶 阅读(109) 评论(0) 推荐(0) 编辑

摘要: <sql> 和 <include> <sql>用来封装SQL语句, <include>来调用 代码片段:<sql id="select">SELECT * FROM `body_index`</sql> <select id="find" resultType="*" resultMap="*"> 阅读全文
posted @ 2018-02-27 23:00 纯黑Se丶 阅读(220) 评论(0) 推荐(0) 编辑

摘要: 标准写法如下: 第一种写法(1): 原符号 < <= > >= & ' " 替换符号 &lt; &lt;= &gt; &gt;= &amp; &apos; &quot; 例如:sql如下: create_date_time &gt;= #{startTime} and create_date_tim 阅读全文
posted @ 2018-02-27 22:59 纯黑Se丶 阅读(216) 评论(0) 推荐(0) 编辑

摘要: 感谢www.baidu.com/p/dongfanghong_1 sql大神,简单的语法运用起来简直活了。第一法】 select * from table where name='D' UNION ALL select * from table where name<>'D' 第二法】 SELECT 阅读全文
posted @ 2018-02-27 22:54 纯黑Se丶 阅读(323) 评论(0) 推荐(0) 编辑

摘要: Jackson,我感觉是在Java与Json之间相互转换的最快速的框架,当然Google的Gson也很不错,但是参照网上有人的性能测试,看起来还是Jackson比较快一点 Jackson处理一般的JavaBean和Json之间的转换只要使用ObjectMapper 对象的readValue和writ 阅读全文
posted @ 2018-02-27 22:48 纯黑Se丶 阅读(126) 评论(0) 推荐(0) 编辑