resin3的host配置优化

配置resin.conf中的host部分。
定义日志目录,格式化输出,web发布目录,错误码定义等等。
在resin2.x中可以定义 <classpath id=’WEB-INF/classes’ source=’src’ compile=’true’/>
来自动编译源码,但是在resin3.x中没有这个用法,只能放到WEB-INF/classes目录下。
具体如下:
<host id=”www.2hei.net“>
  <stdout-log path=’/root/soft/resin/log/stdout.log’ rollover-period=’1W’/>
  <stderr-log path=’/root/soft/resin/log/stdout.log’ rollover-period=’1W’/>
  <access-log path=’/root/soft/2hei/logs/access.log’>
  <format>%h`%l`%u`%{%Y-%m-%d %H:%M:%S}t`%r`%s`%b`%{Referer}i`%{User-Agent}i`%{X-Up-Calling-Line-ID}i</format>
      <rollover-period>1D</rollover-period>
      <archive-format>%Y-%m-%d.access.test.log</archive-format>
    </access-log>

    <root-directory>/root/soft/2hei</root-directory>
      <web-app id=”/” root-directory=”httpdocs”/>
      <!–
      <classpath id=’WEB-INF/classes’ source=’src’ compile=’true’/>
      –>
    <session-config>
    <!– 2 hour timeout –>
     <session-timeout>120</session-timeout>
     <session-max>4096</session-max>
     <enable-url-rewriting>true</enable-url-rewriting>
    </session-config>
    <error-page>
     <error-code>404</error-code>
     <location>/file_not_found.jsp</location>
    </error-page>

    </host>

你可能感兴趣的:(Web,jsp,Access,UP)