2012年(80)
发布时间:2012-12-18 16:38:53
一、XMLHttpRequest 对象的方法与属性 方 法 描 述 abort() 停止当前请求 getAllResponseHeaders() 把HTTP请求的所有响应首部作为键/值对返回 getResponseHeader("header") 返回指定首部的串值 open("method", "url") 建立对服务器的调用。method参数可以是GET、POST或PUT。url参数可以是相对URL或绝对URL。这个方法还包括3个可......【阅读全文】
发布时间:2012-12-14 19:42:52
描述:将远程服务器映射到本地服务器的URL空间 语法:ProxyPass [路径] !|url [键=值 键=值 ...]] [nocanon] 上下文: server config, virtual host, directory 状态:扩展 模 块:mod_proxy 该指令可以将远程服务器映射到本地服务器的URL空间;本地的服务器并不是扮演传统意义上的代理服务器的角色,而是表现为远程服务器的一个镜像。此 本地服务器常被成为反向代理(reversed proxy)或者是网关(gateway)。路 径是指本地虚拟路径的名字;url指远程服务器的一个部分URL,不能包含查询字......【阅读全文】
发布时间:2012-12-14 10:22:15
1 - Tomcat Server的组成部分 1.1 - Server A Server element represents the entire Catalina servlet container. (Singleton) 1.2 - Service A Service element represents the combination of one or more Connector components that share a single EngineService是这样一个集合:它由一个或者多......【阅读全文】
发布时间:2012-12-12 21:01:29
<Context path="/unicard" docBase="unicard" debug="5" reloadable="true" crossContext="true"> <Resource name="jdbc/myoracle" auth="Container" type="javax.sql.DataSource"/> <ResourceParams name="jdbc/myoracle"> <parameter> <name>factory</name>......【阅读全文】
发布时间:2012-12-12 16:09:21
applicationContext 实例化 时就会 实例化 applicationContext.xml 中配置的对象 并且是 单例类 (就是 在 applicationContext.getBean() 还为执行之前 就已经实例化好了) beanFactory 实例化时 applicationContext.xml 中的配置对象 是延迟加载的 直到调用相应的 beanFactory.getBean("") 方法时是才实例化 一:ApplicationContext应用上下文(区别于bean工厂载入类的方式,一个......【阅读全文】