xuzh_blog

博客园 首页 新随笔 联系 订阅 管理

在tomcat应用conf/server.xml文件的标签中添加下面内容:

<Service name="imageService">
<!--分配8089端口 -->
      <Connector port="8089"   
           protocol="HTTP/1.1"  
           connectionTimeout="20000"   
           URIEncoding="GBK"  
           redirectPort="8443" />

    <!--name 与 servicename 一致,defaultHost 为当前服务器的ip-->
       <Engine name="imageService" defaultHost="192.168.2.195">
    <!--name为项目访问地址 其他固定配置-->
        <Host name="192.168.2.195" appBase="webapps"  
    unpackWARs="true" autoDeploy="true"   
    xmlValidation="false" xmlNamespaceAware="false">
    <!--资源地址-->

    <!--docBase 是图片的基础路径如果是Windows下的E://khnskd//fsjb 
             打个比方 图片路径=/home/ftpuser/e_invoice_images/aa.png ,访问url= 192.168.140.6:8089/aa.png-->
          <Context path="" docBase="/home/ftpuser/images" debug="0" reloadable="false"/>
        </Host>
      </Engine>
    </Service>

参考自https://www.freesion.com/article/8216837974/

posted on 2022-01-17 10:26  xuzh_blog  阅读(60)  评论(0编辑  收藏  举报