摘要:
原文地址:http://www.codeceo.com/article/java-thread-pool-kernal.html 前言 多线程编程中,为每个任务分配一个线程是不现实的,线程创建的开销和资源消耗都是很高的。线程池应运而生,成为我们管理线程的利器。Java 通过Executor接口,提供
阅读全文
posted @ 2016-07-14 16:54
一天不进步,就是退步
阅读(649)
推荐(0)
摘要:
原文地址:http://hannesdorfmann.com/annotation-processing/annotationprocessing101 In this blog entry I would like to explain how to write an annotation pro
阅读全文
posted @ 2016-07-14 16:41
一天不进步,就是退步
阅读(295)
推荐(0)
摘要:
1. 看一下源码整体结构: 抓住主要点Resource、ResourceLoader和ResourceEditor 其中Resource作用 Interface for a resource descriptor that abstracts from the actual type of unde
阅读全文
posted @ 2016-07-11 16:54
一天不进步,就是退步
阅读(678)
推荐(0)
摘要:
原文地址:http://www.codeweblog.com/mysql-replication-principle/ 1, the replication process Mysql replication (replication) is an asynchronous replication,
阅读全文
posted @ 2016-07-08 17:36
一天不进步,就是退步
阅读(471)
推荐(0)
摘要:
原文地址:http://www.iteye.com/topic/799827 背景 前段时间在工作中,包括一些代码阅读过程中,spring aop经常性的会看到cglib中的相关内容,包括BeanCopier,BulkBean,Enancher等内容,以前虽大致知道一些内容,原理是通过bytecod
阅读全文
posted @ 2016-07-08 17:22
一天不进步,就是退步
阅读(2988)
推荐(0)
摘要:
ASM是什么? ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify existing classes or dynamically generate cla
阅读全文
posted @ 2016-07-08 09:02
一天不进步,就是退步
阅读(7806)
推荐(0)
摘要:
原文地址:https://www.zhengjie.com/question/bb148773 使用UE(UltraEdit)的高级排序功能就可以删除掉所有的重复行。 操作步骤 1、文件—排序(R)—高级排序/选项(A)。 2、在弹出的“高级排序/选项”对话框中勾选“删除重复项”—根据自己的需要选择
阅读全文
posted @ 2016-07-08 08:36
一天不进步,就是退步
阅读(24053)
推荐(1)
摘要:
1.<context:annotation-config/> xsd中说明: 解析发生在在解析xml文件中,解析类为:AnnotationConfigBeanDefinitionParser.java 2.<context:component-scan/> 注意:红色的一行中,说明<context:
阅读全文
posted @ 2016-07-06 10:42
一天不进步,就是退步
阅读(1923)
推荐(1)
摘要:
原文地址:http://techidiocy.com/annotation-config-vs-component-scan-spring-core/ <context:annotation-config> and <context:component-scan> are two of the mo
阅读全文
posted @ 2016-07-06 09:59
一天不进步,就是退步
阅读(288)
推荐(0)
摘要:
1、@Aspect 在xml定义:<aop:aspectj-autoproxy />,其定义在http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 1.1 注册 的继承关系如下: 1.2 解析过程 AspectJAutoProxyB
阅读全文
posted @ 2016-07-05 18:20
一天不进步,就是退步
阅读(4074)
推荐(0)