resin4 发布war包

简介:

1.将web项目打包成xxxx.war

2.将war包放到webapps下

3.修改conf/resin.xml文件如下部分:

复制代码
 1   <!--
 2      - Configures the main application cluster.  Load-balancing configurations
 3      - will also have a web cluster.
 4     -->
 5   <cluster id="app">
 6     <!-- define the servers in the cluster -->
 7     <server-multi id-prefix="app-" address-list="127.0.0.1" port="6801">  
 8       <watchdog-port>6601</watchdog-port>  
 9       <http address="*" port="设置访问端口"/>  
10     </server-multi>
11 
12     <host-default>
13       <!-- creates the webapps directory for .war expansion。
14 这里是war包放置的目录 -->
15       <web-app-deploy path="webapps"
16                       expand-preserve-fileset="WEB-INF/work/**"
17                       multiversion-routing="${webapp_multiversion_routing}"
18                       path-suffix="${elastic_webapp?resin.id:''}"/>
19     </host-default>
20 
21     <!-- auto virtual host deployment in hosts/foo.example.com/webapps -->
22     <host-deploy path="hosts">
23       <host-default>
24         <resin:import path="host.xml" optional="true"/>
25       </host-default>
26     </host-deploy>
27 
28     <host id="" root-directory="."> 
29 <!--id是访问路径,root-directory这里配置项目路径,xxxx为src上一级目录。即xxxx.war解压后的目录-->
30       <web-app id="/" root-directory="webapps/xxxx">  
31         <form-parameter-max>100</form-parameter-max>                         
32         <stderr-log path='log/stderr.log' timestamp='[%Y-%m-%d %H:%M:%S] ' rollover-period='1D'/>  
33         <stdout-log path='log/stdout.log' timestamp='[%Y-%m-%d %H:%M:%S] ' rollover-period='1D'/>  
34       </web-app>
35     </host>  
36 
37  
38   </cluster>
复制代码

 本文转自Ryan.Miao博客园博客,原文链接:http://www.cnblogs.com/woshimrf/p/4801162.html,如需转载请自行联系原作者

相关文章
|
Java Linux 应用服务中间件
|
Web App开发 Java 应用服务中间件
|
Web App开发 Java 应用服务中间件
|
Linux 应用服务中间件 Perl
|
Java 应用服务中间件 开发工具
|
Java
Resin 4.0 配置accesslog
因为要查询日志,找问题。 所以单独配置了下resin的access日志。 &lt;resin xmlns="http://caucho.com/ns/resin"        xmlns:resin="urn:java:com.caucho.resin"&gt; &lt;!--- Logging configuration for the JDK logging API.--
1641 0