
源码分析/架构深入/开源框架
文章平均质量分 70
坦GA
积沙成塔
展开
-
Spring中beans标签定义
tag --> <![CDATA[Container for and other elements, typically the root element in the document.Allows the definition of default values for all nested bean definitions. May itselfbe neste翻译 2016-11-08 19:28:26 · 2107 阅读 · 0 评论 -
Spring中bean定义
<![CDATA[Defines a single (usually named) bean.A bean definition may contain nested tags for constructor arguments,property values, lookup methods, and replaced methods. Mixing constructorinjecti翻译 2016-11-08 19:52:51 · 966 阅读 · 0 评论 -
Kafka中Consumer类源码介绍
Kafka中Consumer源码public interface Consumer extends Closeable { void subscribe(String... var1); void subscribe(TopicPartition... var1); void unsubscribe(String... var1); void unsubs原创 2016-11-09 08:37:25 · 705 阅读 · 0 评论 -
Kafka中ConsumerConfig源码介绍
Kafka中ConsumerConfig源码public class ConsumerConfig extends AbstractConfig { private static final ConfigDef config; public static final String GROUP_ID_CONFIG = "group.id"; public static f原创 2016-11-09 09:15:02 · 4094 阅读 · 3 评论 -
Common-io-1.4.jar中MANIFEST.MF文件源码
MANIFEST.MF文件源码Manifest-Version: 1.0Archiver-Version: Plexus ArchiverCreated-By: Apache MavenBuilt-By: Niall PembertonBuild-Jdk: 1.5.0_07Bundle-License: http://www.apache.org/licenses/LICENSE-2原创 2016-11-10 08:38:19 · 994 阅读 · 0 评论 -
Apache License 2.0介绍
Apache License 2.0介绍 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITI翻译 2016-11-10 08:42:59 · 6881 阅读 · 0 评论 -
Spring中ClassPathXmlApplicationContext类源码介绍
ClassPathXmlApplicationContext源码介绍public class ClassPathXmlApplicationContext extends AbstractXmlApplicationContext { private Resource[] configResources; public ClassPathXmlApplicationConte原创 2016-11-10 09:24:54 · 1004 阅读 · 0 评论 -
Spring ORM用Hibernate中SqlMapClientFactoryBean源码介绍
SqlMapClientFactoryBean源码public class SqlMapClientFactoryBean implements FactoryBean, InitializingBean { private static final ThreadLocal configTimeLobHandlerHolder = new ThreadLocal(); priv原创 2016-11-10 12:37:32 · 771 阅读 · 0 评论 -
HttpServletRequest源码介绍
HttpServletRequest源码public interface HttpServletRequest extends ServletRequest { String BASIC_AUTH = "BASIC"; String FORM_AUTH = "FORM"; String CLIENT_CERT_AUTH = "CLIENT_CERT"; Stri原创 2016-11-10 16:47:44 · 4200 阅读 · 0 评论 -
HttpServletResponse源码介绍
HttpServletResponse源码public interface HttpServletResponse extends ServletResponse { int SC_CONTINUE = 100; int SC_SWITCHING_PROTOCOLS = 101; int SC_OK = 200; int SC_CREATED = 201;原创 2016-11-10 19:28:05 · 1830 阅读 · 0 评论 -
Spring AOP中Gglib代理类源码介绍
AopProxy源码/** * Delegate interface for a configured AOP proxy, allowing for the creation * of actual proxy objects. * Out-of-the-box implementations are available for JDK dynamic proxies * and f原创 2016-11-12 09:58:59 · 1107 阅读 · 0 评论 -
Spring AOP中JdkDynamicAopProxy源码介绍
JdkDynamicAopProxy源码/** * JDK-based {@link AopProxy} implementation for the Spring AOP framework, * based on JDK {@link java.lang.reflect.Proxy dynamic proxies}. * * Creates a dynamic proxy, im原创 2016-11-12 10:20:50 · 638 阅读 · 0 评论 -
JDK1.7中的Jar包
JDK1.7下有哪些Jar包:原创 2016-11-16 07:25:59 · 2704 阅读 · 0 评论 -
Java NIO中Pipe类源码
Java NIO中Pipe类源码/** * A pair of channels that implements a unidirectional pipe. * * A pipe consists of a pair of channels: A writable {@link * Pipe.SinkChannel sink} channel and a readable {@l原创 2016-11-16 08:45:42 · 500 阅读 · 0 评论 -
Dom4j-1.6.1.jar包下的dom包下的类
Dom4j-1.6.1.jar包下的dom包下的类原创 2016-11-28 19:56:54 · 2613 阅读 · 0 评论 -
Dom4j-1.6.1.jar包下datatype包下的目录结构
Dom4j-1.6.1.jar包下datatype包下的目录结构原创 2016-11-28 20:02:47 · 638 阅读 · 0 评论 -
Servlet、ServletConfig接口源码
Servlet接口源码public interface Servlet { void init(ServletConfig var1) throws ServletException; ServletConfig getServletConfig(); void service(ServletRequest var1, ServletResponse var2)原创 2016-11-28 20:53:50 · 721 阅读 · 0 评论 -
ServletRequest源码
ServletRequest源码public interface ServletRequest { Object getAttribute(String var1); Enumeration getAttributeNames(); String getCharacterEncoding(); void setCharacterEncoding(Stri原创 2016-11-28 21:00:00 · 972 阅读 · 0 评论 -
ServletResponse源码
ServletResponse源码public interface ServletResponse { String getCharacterEncoding(); String getContentType(); ServletOutputStream getOutputStream() throws IOException; PrintWriter原创 2016-11-28 21:03:12 · 567 阅读 · 0 评论 -
ServletException源码
ServletException源码public class ServletException extends Exception { private Throwable rootCause; public ServletException() { } public ServletException(String message) {原创 2016-11-29 08:37:00 · 639 阅读 · 0 评论 -
ServletInputStream源码
ServletInputStream源码public abstract class ServletInputStream extends InputStream { protected ServletInputStream() { } public int readLine(byte[] b, int off, int len) throws IOException原创 2016-11-29 08:47:51 · 737 阅读 · 0 评论 -
ServletOutputStream源码
ServletOutputStream源码public abstract class ServletOutputStream extends OutputStream { private static final String LSTRING_FILE = "javax.servlet.LocalStrings"; private static ResourceBundl原创 2016-11-29 08:55:01 · 931 阅读 · 0 评论 -
Java NIO中Selector类源码
Java NIO中Selector源码/** * A multiplexor of {@link SelectableChannel} objects. * * A selector may be created by invoking the {@link #open open} method of * this class, which will use the system'原创 2016-11-16 12:33:53 · 695 阅读 · 0 评论 -
Java NIO中SocketChannel类源码
Java NIO中SocketChannel类源码/** * A selectable channel for stream-oriented connecting sockets. * * Socket channels are not a complete abstraction of connecting network * sockets. Binding, shu原创 2016-11-16 12:42:54 · 958 阅读 · 0 评论 -
Java NIO中Charset类源码
Java NIO中Charset类源码public abstract class Charset implements Comparable{ private static volatile String bugLevel = null; static boolean atBugLevel(String bl) { // package-原创 2016-11-16 13:18:57 · 3539 阅读 · 0 评论 -
MVVM架构的简单理解
原文地址:http://www.cnblogs.com/888h/archive/2010/12/24/1915214.html 图1 View、ViewModel、Model之间的关系 在SilverLight或者WPF开发中,为什么要用MVVM架构 使用MVVM架构最大的好处是:开发人员在写程序的时候不需要做UI,而设计人员可以使转载 2016-11-13 09:20:43 · 3489 阅读 · 0 评论 -
MySQL在大型网站的应用架构演变
原文地址:http://www.csdn.net/article/2014-06-10/2820160本文主要描述在网站的不同的并发访问量级下,Mysql架构的演变。可扩展性架构的可扩展性往往和并发是息息相关,没有并发的增长,也就没有必要做高可扩展性的架构,这里对可扩展性进行简单介绍一下,常用的扩展手段有以下两种:Scale-up:纵向扩展,通过替换为更好的机器转载 2016-11-13 10:20:00 · 356 阅读 · 0 评论 -
MySQL云数据库的实现
原文地址:http://blog.csdn.net/ywh147/article/details/8954625UMP(Unified MySQL Platform)系统是淘宝核心系统数据库团队开发的低成本和高性能的MySQL云数据方案,关键模块采用Erlang语言实现。系统中包含了controller服务器、proxy服务器、agent服务器、API/Web服务器、日志分析服务器、信转载 2016-11-13 12:47:18 · 7382 阅读 · 0 评论 -
JDK1.7中Atomic包中的类
JDK1.7中concurrent包下atomic包中有的类原创 2016-11-16 20:26:53 · 765 阅读 · 0 评论 -
JDK1.7的concurrent的locks包下的类
JDK1.7的concurrent的locks包下的类Lock接口源码:/** * {@code Lock} implementations provide more extensive locking * operations than can be obtained using {@code synchronized} methods * and statements.原创 2016-11-16 20:40:51 · 388 阅读 · 0 评论 -
Servlet中几个listener源码
ServletContextAttributeListener源码public interface ServletContextAttributeListener extends EventListener { void attributeAdded(ServletContextAttributeEvent var1); void attributeRemoved(Serv原创 2016-11-29 17:18:53 · 552 阅读 · 0 评论 -
Memcache2.7.1.jar目录结构
Memcache2.7.1.jar目录结构原创 2016-11-29 17:29:59 · 462 阅读 · 0 评论 -
Referenced和J2EE1.3 Generic相关的Jar包
Referenced和J2EE1.3 Generic相关的Jar包原创 2016-11-17 07:22:58 · 454 阅读 · 0 评论 -
Java中ASCII类源码
Java中ASCII类源码/** * Utility class that implements the standard C ctype functionality. */final class ASCII { static final int UPPER = 0x00000100; static final int LOWER = 0x原创 2016-11-17 08:48:26 · 1115 阅读 · 0 评论 -
ActiveMQ5.6.0中ActiveMQConnection类源码介绍
ActiveMQConnection类源码,删掉了部分属性的get、set方法public class ActiveMQConnection implements Connection, TopicConnection, QueueConnection, StatsCapable, Closeable, StreamConnection, TransportListener, Enhan原创 2016-11-14 09:02:59 · 837 阅读 · 0 评论 -
Dubbo-2.3.2.jar包目录结构
Dubbo-2.3.2.jar包目录结构原创 2016-11-30 08:40:19 · 651 阅读 · 0 评论 -
Spring-boot-1.4.0.jar包目录结构
Spring-boot-1.4.0.jar包目录结构原创 2016-11-30 09:01:12 · 1206 阅读 · 0 评论 -
Spring-boot中ApplicationRunner源码
ApplicationRunner源码public interface ApplicationRunner { void run(ApplicationArguments var1) throws Exception;}ApplicationArguments源码public interface ApplicationArguments { String[]原创 2016-11-30 09:31:02 · 636 阅读 · 0 评论 -
Spring-boot项目additional-spring-configuration-metadata.json源码
additional-spring-configuration-metadata.json源码{"groups": [ { "name": "logging", "type": "org.springframework.boot.logging.LoggingApplicationListener" }],"properties": [ { "name原创 2016-11-30 09:49:18 · 8624 阅读 · 3 评论 -
Maven中一般会用到的Spring依赖
Maven中一般会用到的Spring依赖原创 2016-11-30 10:08:12 · 558 阅读 · 0 评论