服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - Javaweb resin4如何配置端口虚拟目录

Javaweb resin4如何配置端口虚拟目录

2020-07-26 00:08howareyouo Java教程

这篇文章主要介绍了Javaweb resin4如何配置端口虚拟目录,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

在JAVA WEB容器大家族中,Resin可以算的上最轻巧最快速的服务器了。我个人非常喜欢在产品开发阶段使用Resin来测试和调试,因为开发阶段需要频繁地重启服务器。在给客户进行产品部署的时候我还是趋向于使用Tomcat,因为tomcat是全部免费的,而且使用者很多,再加上NIO和GZip模式可以优化服务器性能以及tomcat出色的稳定性。

Resin4可以给不同的Web app分配不同的端口,也就是说Resin4可以同时开启多个端口的服务,这一点是非常赞的,在tomcat中想要实现这个就必须另外再来一份tomcat,配置不同的端口。而Resin4就不需要了,给不同的应用设置好相应的端口就OK了。

Resin4有一个全局端口,也就是默认端口,可以在conf/resin.properties文件中,对HTTP元素进行简单的修改,如下:

# Set HTTP and HTTPS ports
http : 8080
#https : 8443

在Resin中创建虚拟目录的方式是修改conf/resin.xml文件,正如我刚刚说的,每一个虚拟目录都是一个Web app,都可以配置独立的端口号。在resin.xml中一个cluster就代表一个端口应用,代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<cluster id="app">
    <!-- define the servers in the cluster -->
    <server-multi id-prefix="app-" address-list="${app_servers}" port="6800" />
 
    <host-default>
        <!-- creates the webapps directory for .war expansion -->
        <web-app-deploy path="webapps" expand-preserve-fileset="WEB-INF/work/**"
            multiversion-routing="${webapp_multiversion_routing}" />
    </host-default>
 
    <!-- auto virtual host deployment in hosts/foo.example.com/webapps -->
    <host-deploy path="hosts" />
 
    <!-- the default host, matching any host name -->
    <host id="" root-directory=".">
        <!-- - webapps can be overridden/extended in the resin.xml -->
        <web-app id="/" root-directory="webapps/ROOT" />
        <web-app id="/jPress" root-directory="D:\workspace\java\myeclipse10\jPress\WebRoot" />
 
        <resin:if test="${resin_doc}">
            <web-app id="/resin-doc" root-directory="${resin.root}/doc/resin-doc" />
        </resin:if>
    </host>
</cluster>

这个cluster是web-app的主簇,在其中添加<web-app>标签就可以配置虚拟目录了,这时候这个应用是使用默认端口进行部署的。如果要给这个簇配置特定的端口号,可以在cluster标签第一个元素前面加上<server-default>标签,如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<resin xmlns="http://caucho.com/ns/resin" xmlns:resin="urn:java:com.caucho.resin">
 
    <cluster-default>
        <!-- shared configuration across all clusters -->
        <resin:import path="classpath:META-INF/caucho/app-default.xml" />
        <resin:import path="${__DIR__}/health.xml" optional="true" />
    </cluster-default>
 
    <cluster id="my-cluster">
        <server-default>
            <!-- thread limits, JVM config, keepalives, ports, HTTP -->
            <http port="8083" />
        </server-default>
 
        <host id="www.myhost.com" root-directory="hosts/myhost.com">
            <resin:MovedPermanently regexp="/old-file" target="/new-path" />
            <web-app-deploy path="webapps" expand-preserve-fileset="WEB-INF/work/**" />
            <web-app id="/custom">
            </web-app>
        </host>
    </cluster>
</resin>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/howareyouo/article/details/7776875

延伸 · 阅读

精彩推荐