摘要: 前言 Redis 是一个高性能的key-value数据库。 redis的出现,很大程度补偿了memcached这类key/value存储的不足,在部 分场合可以对关系数据库起到很好的补充作用。它提供了Java,C/C++,C#,PHP,JavaScript,Perl,Object-C,Python, 阅读全文
posted @ 2017-01-04 13:23 冬子哥 阅读(2056) 评论(3) 推荐(1) 编辑
摘要: 前言 AOP在大多数的情况下的应用场景是:日志和验证。至于AOP的理论知识我就不做赘述。而AOP的通知类型有好几种,今天的例子我只选一个有代表意义的“环绕通知”来演示。 一、AOP入门 修改“pom.xml”文件 <project xmlns="http://maven.apache.org/POM 阅读全文
posted @ 2017-01-04 13:18 冬子哥 阅读(3599) 评论(3) 推荐(0) 编辑
摘要: 参考官方例子:https://spring.io/guides/gs/accessing-data-jpa/ 接着上篇内容 一、小试牛刀 创建maven项目后,修改pom.xml文件 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:x 阅读全文
posted @ 2017-01-04 13:04 冬子哥 阅读(2295) 评论(1) 推荐(1) 编辑
摘要: 接着上篇 一、准备工作 修改pom.xml文件 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="h 阅读全文
posted @ 2017-01-04 13:04 冬子哥 阅读(2027) 评论(0) 推荐(0) 编辑
摘要: 参考官方例子:http://spring.io/guides/gs/relational-data-access/ 一、项目准备 在建立mysql数据库后新建表“t_order” 修改pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" 阅读全文
posted @ 2017-01-04 01:02 冬子哥 阅读(6782) 评论(2) 推荐(2) 编辑