首页 > 其他 > 详细

Resin文档阅读笔记

时间:2017-06-30 19:28:02      阅读:324      评论:0      收藏:0      [点我收藏+]

阅读文档对应的版本为Resin4.0,且基本只关注Standard版本的功能。

 

1、Resin可以注册为服务:

 

To install the service, use

C:/> resin-3.2.x/resin.exe -install -conf conf/myconf.xml /
                              -user MyResinUser -password mypassword

To remove the service, use

C:/> resin-3.2.x/resin.exe -remove

 

2、Resin Logs目录里面有访问服务器访问日志在./logs子目录内。

 

3、Resin服务器本身提供一套类似spring Security的可配置权限控制解决方案.详见http://www.caucho.com/resin/admin/security.xtp

4、显式定义Web应用目录的方法:

<host id="">  
     <web-app id=‘/‘ document-directory="/usr/local/apache/htdocs"/>  
   </host>  

5、Resin本身提供依赖注入:Java Injection (CanDI, JSR-299) Injection :http://www.caucho.com/resin/admin/candi.xtp ,注意这句:CanDI provides a straightforward driver for integrating Resin capabilities with popular frameworks. Struts2SpringMule, and Wicket have already been integrate。

6、在database configuration部分,注意现在的配置有Protecting the database password的方法。

7、关于Server Push (Comet):Resin‘s Comet support focuses on solving the concurrency issues around server push.

8、Resin内建Rewrite and Dispatch机制

9、Resin‘s remoting lets applications write services as plain java objects and export them with a choice of protocols, including Hessian, Burlap, CXF (SOAP), XFire. Because Resin activates the service as an IoC singleton, the service can use any of Resin‘s IoC capabilities, including dependency injection, AOP interception, EJB transactions, and event handling.

10、virtual host的设置样例:

<resin xmlns="http://caucho.com/ns/resin">  
<cluster id="">  
<host host-name="www.foo.com">  
  <host-alias>foo.com</host-alias>  
  <host-alias>web.foo.com</host-alias>  
  <root-directory>/opt/www/www.foo.com</root-directory>  
  <web-app id="/" document-directory="webapps/ROOT">  
      
  </web-app>  
  ...  
</host>  
</cluster>  
</resin>  

 

Resin文档阅读笔记

原文:http://www.cnblogs.com/dhcn/p/7100204.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!