官方doc:
http://spring.io/guides/gs/caching/
http://docs.spring.io/spring/docs/current/spring-framework-reference/html/cache.html
Blog介绍:https://www.ibm.com/developerworks/cn/opensource/os-cn-spring-cache/
2015年8月23日星期日
spring schedule
http://spring.io/guides/gs/scheduling-tasks/
官方doc:http://docs.spring.io/spring/docs/current/spring-framework-reference/html/scheduling.html
http://gong1208.iteye.com/blog/1773177
Spring整合JMS
JMS原理:http://docs.oracle.com/cd/E19148-01/820-0533/aeras/index.html
JMS和MQ原理:http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt127
基于spring Boot和annotion的实例:http://spring.io/guides/gs/messaging-jms/
基于配置文件的JMS实例:
http://haohaoxuexi.iteye.com/blog/1893038
http://haohaoxuexi.iteye.com/blog/1893676-介绍了各种listener
http://haohaoxuexi.iteye.com/blog/1900937-介绍了messageConverter
http://haohaoxuexi.iteye.com/blog/1983532-介绍了事务支持
官方doc:
http://docs.spring.io/spring/docs/current/spring-framework-reference/html/jms.html
JMS和MQ原理:http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt127
基于spring Boot和annotion的实例:http://spring.io/guides/gs/messaging-jms/
基于配置文件的JMS实例:
http://haohaoxuexi.iteye.com/blog/1893038
http://haohaoxuexi.iteye.com/blog/1893676-介绍了各种listener
http://haohaoxuexi.iteye.com/blog/1900937-介绍了messageConverter
http://haohaoxuexi.iteye.com/blog/1983532-介绍了事务支持
官方doc:
http://docs.spring.io/spring/docs/current/spring-framework-reference/html/jms.html
2015年8月18日星期二
Spring Batch
Spring Batch是一个轻量级的,完全面向Spring的批处理框架,可以应用于企业级大量的数据处理系统。Spring Batch以POJO和大家熟知的Spring框架为基础,使开发者更容易的访问和利用企业级服务。Spring Batch可以提供大量的,可重复的数据处理功能,包括日志记录/跟踪,事务管理,作业处理统计工作重新启动、跳过,和资源管理等重要功能。
适用的业务方案:
1、批处理定期提交。
2、并行批处理:并行处理工作。
3、企业消息驱动处理
4、大规模的并行处理
5、手动或是有计划的重启
6、局部处理:跳过记录(如:回滚)
适用的业务方案:
1、批处理定期提交。
2、并行批处理:并行处理工作。
3、企业消息驱动处理
4、大规模的并行处理
5、手动或是有计划的重启
6、局部处理:跳过记录(如:回滚)
外部控制器调用JobLauncher启动一个Job,Job调用自己的Step去实现对数据的操作,Step处理完成后,再将处理结果一步步返回给上一层,这就是Batch处理实现的一个简单流程。
参考:
http://www.ibm.com/developerworks/cn/java/j-lo-springbatch1/
http://www.ibm.com/developerworks/cn/java/j-lo-springbatch2/
2015年8月9日星期日
Spring Data Redis资料整理
Redis介绍
http://www.ibm.com/developerworks/cn/java/os-springredis/
Spring 整合 Redis:spring data redis基础使用
http://blog.csdn.net/java2000_wl/article/details/8543203/
http://www.ibm.com/developerworks/cn/java/os-springredis/
Spring 整合 Redis:spring data redis基础使用
http://blog.csdn.net/java2000_wl/article/details/8543203/
使用Spring Data + Redis实现缓存:基于@cache实现
http://www.jdon.com/repository/redis.html
http://blog.joshuawhite.com/java/caching-with-spring-data-redis/
Spring Cache注解+Redis
http://hanqunfeng.iteye.com/blog/2176172
Spring Data Redis实现一个订阅/发布系统
http://www.open-open.com/lib/view/open1351324403395.html
使用Spring Data Redis操作Redis
涉及进行master切换,事务相关内容
http://aiilive.blog.51cto.com/1925756/1627455
两种方式实现pub/sub消息系统:注册bean和使用Redis命名空间的方式配置
http://aiilive.blog.51cto.com/1925756/1627478
Spring-data-redis:特性与实例
http://shift-alt-ctrl.iteye.com/blog/1886831
Redis连接池简单介绍
http://shift-alt-ctrl.iteye.com/blog/1885910
Spring-data-redis: 事务与pipeline
http://shift-alt-ctrl.iteye.com/blog/1887473
Spring-data-redis: pub/sub消息订阅-->redis的消息订阅不是持久化的
http://shift-alt-ctrl.iteye.com/blog/1887700
改进为持久化的消息队列:http://shift-alt-ctrl.iteye.com/blog/1867454
征服redis系列
http://snowolf.iteye.com/blog/1630697 安装和简单的使用
http://snowolf.iteye.com/blog/1633196 客户端进行shard
http://snowolf.iteye.com/blog/1666908
http://www.jdon.com/repository/redis.html
http://blog.joshuawhite.com/java/caching-with-spring-data-redis/
Spring Cache注解+Redis
http://hanqunfeng.iteye.com/blog/2176172
Spring Data Redis实现一个订阅/发布系统
http://www.open-open.com/lib/view/open1351324403395.html
使用Spring Data Redis操作Redis
涉及进行master切换,事务相关内容
http://aiilive.blog.51cto.com/1925756/1627455
两种方式实现pub/sub消息系统:注册bean和使用Redis命名空间的方式配置
http://aiilive.blog.51cto.com/1925756/1627478
Spring-data-redis:特性与实例
http://shift-alt-ctrl.iteye.com/blog/1886831
Redis连接池简单介绍
http://shift-alt-ctrl.iteye.com/blog/1885910
Spring-data-redis: 事务与pipeline
http://shift-alt-ctrl.iteye.com/blog/1887473
Spring-data-redis: pub/sub消息订阅-->redis的消息订阅不是持久化的
http://shift-alt-ctrl.iteye.com/blog/1887700
改进为持久化的消息队列:http://shift-alt-ctrl.iteye.com/blog/1867454
征服redis系列
http://snowolf.iteye.com/blog/1630697 安装和简单的使用
http://snowolf.iteye.com/blog/1633196 客户端进行shard
http://snowolf.iteye.com/blog/1666908
数据治理资料
http://housheng33.iteye.com/blog/1853966
http://www.ibm.com/developerworks/cn/data/library/techarticles/dm-0904loulj/
http://v.youku.com/v_show/id_XOTI1NDc4MjUy.html?from=y1.7-1.2
http://www.ibm.com/developerworks/cn/data/library/techarticles/dm-0904loulj/
http://v.youku.com/v_show/id_XOTI1NDc4MjUy.html?from=y1.7-1.2
订阅:
博文 (Atom)
