当前位置: 主页 > 服务器技术 > Web服务器 > Resin 3.1配置文件resin.conf详解

Resin 3.1配置文件resin.conf详解

时间:2010-1-14来源:互联网 点击:

Resin是CAUCHO公司(http://www.caucho.com/)的产品,是一个非常流行的支持servlets 和jsp的引擎,速度非常快。以下是resin配置文件resin.conf中文详解说明.

<!--  Resin 3.1 配置文件. -->  
<resin xmlns="http://caucho.com/ns/resin" xmlns:resin="http://caucho.com/ns/resin/core">  
  <!-- 加载resin/lib下的所有.jar文件-->  
  <class-loader>  
    <tree-loader path="${resin.home}/lib"/>  
    <tree-loader path="${resin.root}/lib"/>  
  </class-loader>  
  <!--  管理配置 -->  
  <management path="${resin.root}/admin">  
  </management>  
  <!--   JDK日志接口的配置.   -->  
  <log name="" path="stdout:" timestamp="[%H:%M:%S.%s] "/>  
  <!-- 日志信息的级别:‘info‘ 生产环境  ‘fine‘ 开发环境 ‘finer‘ 调试环境 -->  
  <logger name="com.caucho" level="info"/>  
  <logger name="com.caucho.java" level="config"/>  
  <logger name="com.caucho.loader" level="config"/>  
  <!--  环境上下文的检测时间,对于生产站点, 这个要设置长一点,例如600秒,10分钟  -->  
  <dependency-check-interval>2s</dependency-check-interval>  
  <!--      发送邮件通知的SMTP服务器     -->  
  <system-property mail.smtp.host="127.0.0.1"/>  
  <system-property mail.smtp.port="25"/>  
  <!--      你可以把编译器改成 "javac", "eclipse" 或者 "internal".    -->  
  <javac compiler="internal" args="-source 1.5"/>  
  
  <!-- Security providers. -->  
      <security-provider>  
         com.sun.net.ssl.internal.ssl.Provider  
      </security-provider>  
  
  <!-- 去掉注释,如果你使用resin提供的xml应用 -->  
        
      <system-property javax.xml.parsers.DocumentBuilderFactory  
                      ="com.caucho.xml.parsers.XmlDocumentBuilderFactory"/>  
      <system-property javax.xml.parsers.SAXParserFactory  
                      ="com.caucho.xml.parsers.XmlSAXParserFactory"/>  
    
  <cluster id="app-tier">  
    <!-- 设置集群上下文的根, 相对于server.root -->  
    <root-directory>.</root-directory>  
    <server-default>  
      <!-- HTTP服务的端口-->  
      <http address="*" port="8080"/>  
      <!-- SSL端口配置: -->  
            
          <http address="*" port="8443">  
            <openssl>  
              <certificate-file>keys/gryffindor.crt</certificate-file>  
              <certificate-key-file>keys/gryffindor.key</certificate-key-file>  
              <password>test123</password>  
            </openssl>  
          </http>  
         
      <!--          JVM参数设置        -->  
      <jvm-arg>-Xmx256m</jvm-arg>  
      <jvm-arg>-Xss1m</jvm-arg>  
      <jvm-arg>-Xdebug</jvm-arg>  
      <jvm-arg>-Dcom.sun.management.jmxremote</jvm-arg>  
      <!-- Uncomment to enable admin heap dumps 去掉这个如果你想管理内存堆的倾倒 -->  
          <jvm-arg>-agentlib:resin</jvm-arg>  
  
      <watchdog-arg>-Dcom.sun.management.jmxremote</watchdog-arg>  
      <!--   强制resin强制重起时的最小空闲内存    -->  
      <memory-free-min>1M</memory-free-min>  
      <!-- 最大线程数量. -->  
      <thread-max>256</thread-max>  
      <!--  套接字等待时间 -->  
      <socket-timeout>65s</socket-timeout>  
      <!-- 配置 keepalive -->  
      <keepalive-max>128</keepalive-max>  
      <keepalive-timeout>15s</keepalive-timeout>  
      <!--          如果使用的是UNIX,这里是启动的帐号和用户组. -->  
          <user-name>resin</user-name>  
          <group-name>resin</group-name>  
        
    </server-default>  
    <!-- 定义群集服务器 -->  
    <server id="" address="127.0.0.1" port="6800"/>  
    <!--    Configures the persistent store for single-server or clustered
配置独立服务器或者群集的持久化存储,专业版的功能    -->  
    <resin:if test="${resin.isProfessional()}">  
      <persistent-store type="cluster">  
        <init path="session"/>  
      </persistent-store>  
    </resin:if>  
    <!--   为了安全, 你可以为SSL会话(SSL sessions)定义一个不同的cookie. -->  
        <ssl-session-cookie>SSL_JSESSIONID</ssl-session-cookie>  
      
    <!--  缓存启用 (专业版的功能)   -->  
    <resin:if test="${isResinProfessional}">  
      <cache path="cache" memory-size="64M">  
        <!-- Vary header rewriting for IE -->  
        <rewrite-vary-as-private/>  
      </cache>  
    </resin:if>  
    <!-- 启用周期性的服务器状态检查和死锁检查,所有的服务器可以添加 <url> 来检查。  -->  
    <resin:if test="${isResinProfessional}">  
      <ping>  
        <!-- <url>http://localhost:8080/test-ping.jsp</url> -->  
      </ping>  
    </resin:if>  
    <!-- 包含web应用的默认行为  -->  
    <resin:import path="${resin.home}/conf/app-default.xml"/>  
    <!-- 每一个web应用的默认参数  -->  
    <web-app-default>  
      <!-- 扩展库的公共jar文件,扩展是安全的即使没有类装载器知道的jars,装载的类将为每个应用分别装载,也就是这些类都是不同的 -->  

站长资讯网
.
分页: [1] [2]
TAG: resin.conf 配置文件 详解
推荐内容最近更新人气排行
关于我们 | 友情链接 | 网址推荐 | 常用资讯 | 网站地图 | RSS | 留言