码迷,mamicode.com
首页 >  
搜索关键字:proxy classes    ( 8879个结果
Android中Parcelable接口用法
1. Parcelable接口Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ...
分类:移动开发   时间:2014-08-12 17:01:14    阅读次数:242
代理设计模式
1、主要解决的问题:客户端代码和实现代码的解耦合,代理类对实现类打理一切 真正干活的那个类是要对客户端隐藏的 代理类和实现类一般都会实现同一个接口(也可以不这么干) 代理设计模式(Proxy)和状态模式(State)很类似,代理模式是状态模式的一种特例 一个代理模式下的代理类一般只对应一个实现类;而...
分类:其他好文   时间:2014-08-12 16:58:24    阅读次数:211
通过扫描包路径获取包内class
public static Set> getClasses(ClassLoader classLoader, String pack) { Set> classes = new LinkedHashSet>(); boolean recursive = true; ...
分类:其他好文   时间:2014-08-12 16:51:34    阅读次数:223
Jetty类加载
ssloader,系统classloader作为它的父亲。在Java中这样的层级关系是正常的,然而servlet规范复杂化了层级关系,因为它要求:  1)包含在WEB-INF/lib或者WEB-INF/classes中的类优先于在父classloader上的类。这和通常的Java 2 classloader的行为是对立的。  2)系统类例如java.lang.String被从webapp优先权...
分类:其他好文   时间:2014-08-11 17:54:32    阅读次数:204
ext GridPanel分页
grid.js Ext.onReady(function() { var gridStore = new Ext.data.Store({ proxy: new Ext.data.HttpProxy({ url: 'grid.asp' }), reader: new Ext.data.JsonReader({ root: 'data', totalPrope...
分类:其他好文   时间:2014-08-11 17:52:52    阅读次数:226
xe6输出枚举类型每项字符串
1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, 7 Winapi.Messages, 8 System.SysUtils, 9 System.Variants,10 System.Classes,11 Vcl...
分类:其他好文   时间:2014-08-11 02:43:01    阅读次数:281
Android Widget 小部件(四---完结) 使用ListView、GridView、StackView、ViewFlipper展示Widget
A RemoteViews object (and, consequently, an App Widget) can support the following layout classes: FrameLayoutLinearLayoutRelativeLayout And the following widget classes: AnalogClockButtonChro...
分类:移动开发   时间:2014-08-11 00:24:11    阅读次数:494
proxy
要安装Nginx,至少需要先安装pcre, zlib、ssl1. PCRE(Perl Compatible Regular Expressions)这是一个Perl库,用来实现重写rewrite的目的//cmdyum -y install gcc gcc-c++cd /usr/local/wget ...
分类:其他好文   时间:2014-08-09 23:13:39    阅读次数:790
【第一季:Tomcat 8迷情】 第9集 apache+mod_proxy+tomcat 负载均衡配置
Webapplication:请参看附件环境说明:TomcatA:192.168.146.128 TomcatB:192.168.146.130 ApacheHttpServer:192.168.146.128在apahcehttpd.conf配置:1)加载模块2)负载均衡配置ProxyPass/balancer://mycluster/stickysession=JSESSIONID|jsessionidnofailover=On <Proxyba..
分类:其他好文   时间:2014-08-09 18:57:59    阅读次数:186
Nginx Installation、Configuration、Rreverse Proxy、Load Balancing Learning
Nginx("engine x")是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器 Nginx可以在大多数Unix like OS上编译运行,并有Windows移植版。它的的源代码使用2-clause BSD-like license Nginx是一个很强大...
分类:其他好文   时间:2014-08-09 13:23:18    阅读次数:392
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!