I recently had an interesting discussion with a colleague. We were recounting our job histories and how our, shall we say colorful personalities, coul...
分类:
其他好文 时间:
2015-09-18 20:14:09
阅读次数:
171
1.解压mysql-5.6.26-winx64.zip到任意位置,如:c:\ 2.设置环境变量. 3.copy一份my-default.ini 为my.ini,修改内容如下: # For advice on how to change settings please see # http://dev...
分类:
数据库 时间:
2015-09-16 15:48:41
阅读次数:
245
v$sga_target_advice:该视图可用于建议SGA大小设置是否合理。 SELECT a.sga_size,--sga期望大小 a.sga_size_factor,--期望sga大小与实际sga大小的百分比 a.estd_db_time,--sga设置为期望的大小后,其dbtime消耗期望...
分类:
数据库 时间:
2015-09-16 12:43:28
阅读次数:
595
看一下这个视图能给我们带来什么样的信息(视图中每个列都很有帮助):sys@ora10g> SELECT pga_target_for_estimate / 1024 / 1024 "PGA(MB)", 2 pga_target_factor, 3 estd_pga_cache_hit_percent...
分类:
数据库 时间:
2015-09-16 12:11:32
阅读次数:
246
Spring基础系列12 -- Spring AOP AspectJ转载:http://www.cnblogs.com/leiOOlei/p/3613352.html本文讲述使用AspectJ框架实现Spring AOP。再重复一下Spring AOP中的三个概念,Advice:向程序内部注入的代码...
分类:
编程语言 时间:
2015-09-09 01:09:12
阅读次数:
206
Spring基础系列11 -- 自动创建Proxy转载:http://www.cnblogs.com/leiOOlei/p/3557964.html 在《Spring3系列9- Spring AOP——Advice》和《Spring3系列10- Spring AOP——Pointcut,Adv...
分类:
编程语言 时间:
2015-09-09 00:57:45
阅读次数:
238
Spring基础系列10 -- Spring AOP-----------Pointcut, Advisor转载:http://www.cnblogs.com/leiOOlei/p/3557643.html上一篇的Spring AOP Advice例子中,Class(CustomerServic.....
分类:
编程语言 时间:
2015-09-08 15:03:19
阅读次数:
200
这段话是什么意思?意思是这个事物advice的管理者为transactionManager,你从配置文件中应该能够找到一个ID为transactionManager的bean,而这个建议中规定了save方法的传输方式为required,...
分类:
编程语言 时间:
2015-09-08 12:03:30
阅读次数:
173
转自: http://confluent.io/blog/stream-data-platform-2 http://www.infoq.com/cn/news/2015/03/apache-kafka-stream-data-advice/ 在《流数据平台构建实战指南》第一部分中,Confluen...
分类:
Web程序 时间:
2015-09-05 16:18:16
阅读次数:
212
在Spring配置文件中,通常使用元素来设置AOP,其中应包括:指定aspect,aspect是一个POJO类,包含了很多的advice;advice是aspect中的方法,它包含了要应用在切面上的逻辑;指定pointcut,pointcut是一个表达式,用于指定在哪些对象或者类型上应用aspect...
分类:
编程语言 时间:
2015-08-29 16:42:14
阅读次数:
159