- 浏览: 267760 次
- 性别:
- 来自: 北京
-
文章分类
最新评论
-
cuiqi4016:
正在做json转换的功能,帮大忙了,感谢博主分享
java 通过反射获取泛型的类型 -
cxshun:
写得很好,感谢博主的分享
java 通过反射获取泛型的类型 -
joy3229233:
[url][/url][flash=200,200][/fla ...
(转)flex checkbox 选中 -
linkagebest:
盗版可耻。。。。。
(转)flex checkbox 选中 -
shuai0420:
...
flex数据绑定
1 下载地址 http://www.opensymphony.com/oscache/
2 把下载的jar 加入到你的build path 里面。 建议直接放到 tomcat/shared/lib 目录下面
3 在 web.xml 里面增加配置
<taglib> <taglib-uri>oscache</taglib-uri> <taglib-location>/WEB-INF/classes/oscache.tld</taglib-location> </taglib>
4 在你的jsp 页面里增加如下标签
<%@ taglib uri=\"http://www.opensymphony.com/oscache\" prefix=\"cache\"%>
5 在需要缓冲的部分,采用如下标签
<cache:cache key=\"myPageCachekey \" groups=\"myDefaultGroup\" scope=\"application\" time=\"1800\"& gt;。。。 这中间是你要缓冲的内容</cache:cache>
6 刷新缓冲
<cache:flush scope=\"application\" group=\"myDefaultGroup\" />
参数说明
key - [默认为请求的 request URI + query string] -
The cache key, any string. This should be unique for the given scope since
duplicate keys will map to the same cache entry. The default value uses an escaped version of the URI and query string of the current page.
It is possible to specify multiple cache tags in the same page without specifying keys - in this situation an index is appended to the key of subsequent tags.
However this usage is discouraged since if the flow of the page is inconsistent,
or cache tags are nested, the indicies will potentially change each time the page is executed, resulting in seemingly jumbled cache entries.
缓冲的key,可以是任何的字符串。在一个范围内是唯一的,因为相同的key代表了相同的缓冲入口。默认使用请求的URI和请求的字符串(问号后面的部分)
scope - [application] - The scope of this cache (valid values are \"application\" and \"session\").
范围,有application和session, 默认为 application
time - [3600] The amount of time to cache this content for (in seconds).
(Default is 3600 seconds, one hour). Supplying a negative value for this
attribute means that the content never expires.
缓冲内容的时间(秒)。默认为1小时,3600秒,如果为-1则内容你永远不过期
duration - [] - The duration of this cache (this attribute is an alternative to time). duration can be specified using Simple Date Format or ISO-8601 date format. [Page]
另外一种设置缓冲时间的方法。可以用简单日期格式或者ISO-8601的日期格式
cron - [] - A cron expression that determines when this cached content will
expire. This allows content to be expired at particular dates and/or times,
rather than once a cache entry reaches a certain age. See Cron Expressions to read more about this attribute.
定时刷新的设置。可以在指定的时间和周期进行刷新。
refresh - [false] - A boolean. If true, the cache will be refreshed regardless of whether it is considered stale or not. This enables you to decide at runtime whether or not to rebuild the content.
强制刷新缓冲
mode - [] - Setting this to \"silent\" will prevent the body of the tag from being written to the output stream. This may be useful if you want to preload the cache with content without actually displaying that content to the user.
设置为[silent]可以让你提前把内容读取,但不会输出到。
groups - [] - A comma-delimited list of group names can be provided. This allows cache entries to be grouped according to your needs. Grouping is useful when you have cached content that depends on other parts of your application or data - when that dependency changes, flushing the relevant group will cause all cache
entries in that group to be expired.
设置分组。可以同组的缓冲数据进行控制,比如刷新
language - [] - The ISO-639 language code to distinguish different content cached under an otherwise identical key. This is useful on a multilingual site where the same JSP code is used to render content in different languages depending on the current user’s preferences.
语言,我没用过,也没发现问题。 默认为当前页面的语言吧
refreshpolicyclass - [] - A fully-qualified classname that extends com.opensymphony.oscache.web.WebEntryRefreshPolicy. This allows you to programmatically determine whether cached content should be exipired.
自定义的刷新策略类。自己控制什么时候刷新数据
refreshpolicyparam - [] - Any arbitrary parameters that you need to pass through to the[Page] refreshpolicyclass. Specifying this attribute without specifying a refreshpolicyclass will have no effect.
传递给刷新策略类的参数
2 把下载的jar 加入到你的build path 里面。 建议直接放到 tomcat/shared/lib 目录下面
3 在 web.xml 里面增加配置
<taglib> <taglib-uri>oscache</taglib-uri> <taglib-location>/WEB-INF/classes/oscache.tld</taglib-location> </taglib>
4 在你的jsp 页面里增加如下标签
<%@ taglib uri=\"http://www.opensymphony.com/oscache\" prefix=\"cache\"%>
5 在需要缓冲的部分,采用如下标签
<cache:cache key=\"myPageCachekey \" groups=\"myDefaultGroup\" scope=\"application\" time=\"1800\"& gt;。。。 这中间是你要缓冲的内容</cache:cache>
6 刷新缓冲
<cache:flush scope=\"application\" group=\"myDefaultGroup\" />
参数说明
key - [默认为请求的 request URI + query string] -
The cache key, any string. This should be unique for the given scope since
duplicate keys will map to the same cache entry. The default value uses an escaped version of the URI and query string of the current page.
It is possible to specify multiple cache tags in the same page without specifying keys - in this situation an index is appended to the key of subsequent tags.
However this usage is discouraged since if the flow of the page is inconsistent,
or cache tags are nested, the indicies will potentially change each time the page is executed, resulting in seemingly jumbled cache entries.
缓冲的key,可以是任何的字符串。在一个范围内是唯一的,因为相同的key代表了相同的缓冲入口。默认使用请求的URI和请求的字符串(问号后面的部分)
scope - [application] - The scope of this cache (valid values are \"application\" and \"session\").
范围,有application和session, 默认为 application
time - [3600] The amount of time to cache this content for (in seconds).
(Default is 3600 seconds, one hour). Supplying a negative value for this
attribute means that the content never expires.
缓冲内容的时间(秒)。默认为1小时,3600秒,如果为-1则内容你永远不过期
duration - [] - The duration of this cache (this attribute is an alternative to time). duration can be specified using Simple Date Format or ISO-8601 date format. [Page]
另外一种设置缓冲时间的方法。可以用简单日期格式或者ISO-8601的日期格式
cron - [] - A cron expression that determines when this cached content will
expire. This allows content to be expired at particular dates and/or times,
rather than once a cache entry reaches a certain age. See Cron Expressions to read more about this attribute.
定时刷新的设置。可以在指定的时间和周期进行刷新。
refresh - [false] - A boolean. If true, the cache will be refreshed regardless of whether it is considered stale or not. This enables you to decide at runtime whether or not to rebuild the content.
强制刷新缓冲
mode - [] - Setting this to \"silent\" will prevent the body of the tag from being written to the output stream. This may be useful if you want to preload the cache with content without actually displaying that content to the user.
设置为[silent]可以让你提前把内容读取,但不会输出到。
groups - [] - A comma-delimited list of group names can be provided. This allows cache entries to be grouped according to your needs. Grouping is useful when you have cached content that depends on other parts of your application or data - when that dependency changes, flushing the relevant group will cause all cache
entries in that group to be expired.
设置分组。可以同组的缓冲数据进行控制,比如刷新
language - [] - The ISO-639 language code to distinguish different content cached under an otherwise identical key. This is useful on a multilingual site where the same JSP code is used to render content in different languages depending on the current user’s preferences.
语言,我没用过,也没发现问题。 默认为当前页面的语言吧
refreshpolicyclass - [] - A fully-qualified classname that extends com.opensymphony.oscache.web.WebEntryRefreshPolicy. This allows you to programmatically determine whether cached content should be exipired.
自定义的刷新策略类。自己控制什么时候刷新数据
refreshpolicyparam - [] - Any arbitrary parameters that you need to pass through to the[Page] refreshpolicyclass. Specifying this attribute without specifying a refreshpolicyclass will have no effect.
传递给刷新策略类的参数
发表评论
-
JVM内存管理:深入垃圾收集器与内存分配策略
2012-09-29 09:40 969转自http://icyfenix.iteye.com ... -
javaVM 内存管理
2012-09-29 09:18 1098转自http://icyfenix.iteye.com/blo ... -
使用J2SE API读取Properties文件的六种方法
2012-03-15 11:46 9671。使用java.util.Properties ... -
java设计模式 -Decorator
2012-03-01 16:05 1000//抽象构件角色 abstract public c ... -
设计模式------Decorator
2012-03-01 14:29 831一、学习装饰着模式 1、定义及作用 该模式以对 ... -
正则表达式学习
2011-12-31 09:56 1104//正则表达式去掉中文 public static vo ... -
System.gc()
2011-06-24 17:40 1056最近在在翻看java的Garbage Collection,即 ... -
java gc(转)
2011-06-24 16:07 997<%@ page contentType="t ... -
hibernate
2011-06-24 11:29 01.hibernate lazy, inverse, casc ... -
详解spring事务属性(转)
2011-06-10 10:46 877Spring声明式事务让我们从复杂的事务处理中得到解脱。使得我 ... -
spring心得(转)
2011-06-03 11:00 8611、spring原理 s ... -
实战Concurrent
2011-05-30 17:45 940编写多线程的程序一直都是一件比较麻烦的事情,要考虑很多事情,处 ... -
Memcached(转)
2011-05-30 17:32 987我对于Memcached的接触,还是在去年看了CSDN的一系列 ... -
动态创建代理(转)
2011-04-21 11:22 1081随着Proxy的流行,Sun把它纳入到JDK1.3实现了Jav ... -
代理模式(转)
2011-04-21 11:17 925代理模式是常用的Java 设计模式,它的特征是代理类与委托类有 ... -
工厂模式
2011-04-18 15:35 1133简单工厂,工厂方法和 ... -
java 通过反射获取泛型的类型
2011-03-24 13:34 32208jdk1.5开始支持泛型,所以我们有时需要把泛型里定义的对象的 ... -
java反射学习(转)
2011-03-22 15:51 1079Java提供了一套机制来动态执行方法和构造方法,以及数组操作等 ... -
java反射(转)
2011-03-22 15:29 997Java的反射机制是Java特 ... -
Quartz学习
2010-11-09 13:20 9541.与Spring集成 Spring中与quartz 的结合方 ...
相关推荐
1. **缓冲记录**:这是存储在缓存系统中的对象,通常指JSP页面、JSP页面的一部分或Servlet产生的内容。 2. **缓冲键码**:类似于哈希表中的键,用于唯一标识缓存中的每一项记录。例如,可以使用请求的URI或特定的...
4. **集群支持**:Oscache支持在集群环境中使用,无需额外修改代码即可实现缓存数据的一致性。 5. **缓存过期管理**:用户可以自定义缓存项的有效期,包括支持插件式的刷新策略,以便在默认性能无法满足需求时进行...
hibernate各个包 hibernate-testing: 支持单元测试。 hibernate-swarmcache:支持...(OSCache标记库由OpenSymphony设计,它是一种开创性的JSP定制标记应用,提供了在现有JSP页面之内实现快速内存缓冲的功能。 O
OSCache是由OpenSymphony开发的高性能J2EE缓存框架,它允许开发者在JSP页面内直接实现内存缓冲。OSCache的特点包括:缓存任意对象,支持硬盘持久化,集群支持,以及自定义的过期策略。这使得OSCache成为Java应用程序...
- **OSCache**:一种JSP定制标记库,提供内存缓冲功能,提高系统响应速度,减少服务器负载。 - **Unsession(伪会话管理)**:由于HTTP协议无状态,Unsession通过将会话信息存储在文本文件中,而非服务器内存,...
- **缓存系统**:OSCache 提供了在现有 JSP 页面内的快速内存缓冲功能;JCACHE 是 JSR-107 的实现,为 Java 应用程序提供了一个统一的缓存接口。 - **内容管理系统**:InfoGlue 和 OpenCms 是两个开源的内容管理...