View Mode: Normal | Article List
Resin 4.0 snapshot
[ 2009-03-06 16:58:51 | Author: 振华 ]
resin 3.2 发布
[ 2008-08-16 22:54:46 | Author: 振华 ]
使JAVA和php的距离又拉近了一步。
http://www.caucho.com/download/
a leading open source Java-PHP application server vendor, today announced the release of Resin version 3.2 which features faster performance, better scalability, and an improved administration experience.
Resin 3.2.0 features include:
Dynamic clustering with remote application deployment
Improved support for Comet and massive keepalives
Improved administration console
Brokered agent messaging (BAM)
JSF 2.0 draft implementation
...
Read More...
http://www.caucho.com/download/
a leading open source Java-PHP application server vendor, today announced the release of Resin version 3.2 which features faster performance, better scalability, and an improved administration experience.
Resin 3.2.0 features include:
Dynamic clustering with remote application deployment
Improved support for Comet and massive keepalives
Improved administration console
Brokered agent messaging (BAM)
JSF 2.0 draft implementation
...
Read More...
resin-pro-3.1.5 破解下载
[ 2008-04-28 11:48:02 | Author: 振华 ]
(转自丁令的Blog)
功能上完全没有任何限制,可以使用session持久化、cache等,只需要做好相关的配置即可。
3.1.5的Change Log请看官方文档:Resin Change Log ,同时可以看到3.1.6 snapshot了。
Linux/Unix:resin-pro-3.1.5.tar.gz 下载: http://www.onedoor.cn/download?file=resin-pro-3.1.5.tar.gz
Windows:resin-pro-3.1.5.zip 下载 :http://www.onedoor.cn/download?file=resin-pro-3.1.5.zip
功能上完全没有任何限制,可以使用session持久化、cache等,只需要做好相关的配置即可。
3.1.5的Change Log请看官方文档:Resin Change Log ,同时可以看到3.1.6 snapshot了。
Linux/Unix:resin-pro-3.1.5.tar.gz 下载: http://www.onedoor.cn/download?file=resin-pro-3.1.5.tar.gz
Windows:resin-pro-3.1.5.zip 下载 :http://www.onedoor.cn/download?file=resin-pro-3.1.5.zip
Resin 3.1 URL Rewrite
[ 2008-02-18 10:33:25 | Author: 振华 ]
在Resin3.1中提供了URL Rewrite功能,不需要使用Filter,只需要进行必要的配置即可实现。有两种方法可以使用,一种在是resin-web.xml里直接写,第二种是写在任何.xml文件中,在resin-web.xml导入。现在我们只说明第二种方式:
在resin-web.xml中加入如下代码:
另外在WEB-INF下建立一个rewrite.xml,代码示例如下:
Read More...
在resin-web.xml中加入如下代码:
<rewrite-dispatch>
<import path='WEB-INF/rewrite.xml'/>
</rewrite-dispatch>
注意路径不是从/WEB-INF/rewrite.xml,为此费了半天劲……<import path='WEB-INF/rewrite.xml'/>
</rewrite-dispatch>
另外在WEB-INF下建立一个rewrite.xml,代码示例如下:
<rewrite-dispatch xmlns="http://caucho.com/ns/resin" xmlns:resin="http://caucho.com/ns/resin/core">
<forward regexp='^/bbs/subject/list/(\d+)/(\d+)$' target='/bbs/s
...<forward regexp='^/bbs/subject/list/(\d+)/(\d+)$' target='/bbs/s
Read More...
Crack resin-pro-3.1 破解
[ 2008-01-04 16:36:10 | Author: 振华 ]
Resin Professional 3.1.4 (built Tue, 04 Dec 2007 11:27:12 PST)
Copyright(c) 1998-2007 Caucho Technology. All rights reserved.
Starting Resin on Mon, 31 Dec 2007 17:18:52 +0800 (CST)
[17:18:53.640] {main} Proxy Cache disk-size=1024M memory-size=64M
[17:18:53.656] {main} PingThread[] starting, checking []
[17:18:54.109] {main}
[17:18:54.234] {main} Windows XP 5.1 x86
[17:18:54.343] {main} Java 1.5.0_11-b03, 32, mixed mode, GBK, zh, Sun Microsystems Inc.
[17:18:54.468] {main} user.name: dingl
...
Read More...
Copyright(c) 1998-2007 Caucho Technology. All rights reserved.
Starting Resin on Mon, 31 Dec 2007 17:18:52 +0800 (CST)
[17:18:53.640] {main} Proxy Cache disk-size=1024M memory-size=64M
[17:18:53.656] {main} PingThread[] starting, checking []
[17:18:54.109] {main}
[17:18:54.234] {main} Windows XP 5.1 x86
[17:18:54.343] {main} Java 1.5.0_11-b03, 32, mixed mode, GBK, zh, Sun Microsystems Inc.
[17:18:54.468] {main} user.name: dingl
...
Read More...
1. 使***.abc.aaa.com 和abc.aaa.com指向同一应用
2.使group.XXX.com 和XXX.group.XXX.com 都指向同一应用
Read More...
<host id='abc.aaa.com'>
<host-alias-regexp>([^.]+)\.abc\.aaa\.com</host-alias-regexp>
<host-name>${host-alias-regexp.regexp[1]}.abc.aaa.com</host-name>
<web-app id="/" document-directory="e:\space\webroot"/>
</host>
<host-alias-regexp>([^.]+)\.abc\.aaa\.com</host-alias-regexp>
<host-name>${host-alias-regexp.regexp[1]}.abc.aaa.com</host-name>
<web-app id="/" document-directory="e:\space\webroot"/>
</host>
2.使group.XXX.com 和XXX.group.XXX.com 都指向同一应用
<host id="group.aaa.com">
<host-alias-regexp>([a-zA-Z0-9.]+)roup\.([^.]+)\.com</host-alias-regexp>
<host-name>${host-alias-regexp.regexp[1]}roup.${host-alias-regexp.regexp[2]}.com</host-name>
...<host-alias-regexp>([a-zA-Z0-9.]+)roup\.([^.]+)\.com</host-alias-regexp>
<host-name>${host-alias-regexp.regexp[1]}roup.${host-alias-regexp.regexp[2]}.com</host-name>
Read More...
Resin 站点单独分配JVM
[ 2007-09-07 13:11:58 | Author: 振华 ]
记录一下
Resin为每个站点单独分配JVM
Resin+IIS:http://hi.baidu.com/looyea/blog/item/721995cac244fe86c91768f6.html
Resin+Apache:http://www.chinajavaworld.com/thread.jspa?threadID=721522&tstart=-1
Resin为每个站点单独分配JVM
Resin+IIS:http://hi.baidu.com/looyea/blog/item/721995cac244fe86c91768f6.html
Resin+Apache:http://www.chinajavaworld.com/thread.jspa?threadID=721522&tstart=-1
Resin 3 LOG 设置
[ 2007-08-29 18:45:19 | Author: 振华 ]
<stdout-log path='${resin.home}/log/stdout.log'
archive-format="stdout-%Y_%m_%d.log"
rollover-period='1D'
rollover-size='1mb'/>
<stderr-log path='${resin.home}/log/stderr.log'
archive-format="stderr-%Y_%m_%d.log"
rollover-period='1D'
rollover-size='1mb'/>
archive-format="stdout-%Y_%m_%d.log"
rollover-period='1D'
rollover-size='1mb'/>
<stderr-log path='${resin.home}/log/stderr.log'
archive-format="stderr-%Y_%m_%d.log"
rollover-period='1D'
rollover-size='1mb'/>
log设置
<log name='' level='info' path='stdout:' rollover-period='1W' timestamp='[%Y/%m/%d %H:%M:%S.%s] '/>
<log name='com.caucho.java' level='fine' path='stdout:' rollover-period='1W' timestamp='[%Y/%m/%d %H:%M:%S.%s] '/>
...<log name='com.caucho.java' level='fine' path='stdout:' rollover-period='1W' timestamp='[%Y/%m/%d %H:%M:%S.%s] '/>
Read More...












