resin4 发布war包

时间:2022-05-04
本文章向大家介绍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>