Resin文档阅读笔记

Posted 朝晖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Resin文档阅读笔记相关的知识,希望对你有一定的参考价值。

阅读文档对应的版本为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文档阅读笔记的主要内容,如果未能解决你的问题,请参考以下文章

笔记13(FTP配置tomcat配置resin配置MySQL主从配置)

Resin4.0.38能否在<server>配置中支持地址*

Qt文档阅读笔记-Simple Chat Example解析

关于Resin SSL支持的两个问题

构建之法阅读笔记08-第十一章

C++文档阅读笔记-Understanding nullptr in C++