摘要: nodejs+socketio+redis实现前端消息实时推送 1. 后端部分 发送redis消息 可以参考此篇实现(直接使用Jedis即可) http://www.cnblogs.com/binyue/p/4763352.html 2.后端部分: 接收redis消息 var redis; if(p 阅读全文
posted @ 2016-08-05 20:38 yuan.net 阅读(1297) 评论(0) 推荐(0) 编辑
摘要: # =================================================================== # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline. Do NOT copy it in its # entirety to your own app... 阅读全文
posted @ 2016-08-05 15:08 yuan.net 阅读(268) 评论(0) 推荐(0) 编辑
摘要: <update id="updateUserSet" parameterType="User"> update User <set> <if test="userName != null">userName=#{userName},</if> <if test="password != null"> 阅读全文
posted @ 2016-08-05 12:51 yuan.net 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 官方doc文档 http://www.mybatis.org/mybatis-3/configuration.html#settings 最近测试发现个myBatis 有个比较严重的性能问题, 描述如下:1. define a bean classpublic class Bean {private 阅读全文
posted @ 2016-08-05 12:48 yuan.net 阅读(2889) 评论(0) 推荐(0) 编辑