第一章 问题描述

在部署报表时,希望能在报表前增加前缀xxxx,由http://localhost:8080/report改为http://localhost:8080/xxxx/report

第二章 使用步骤

方法一

修改 tomcat/conf/server.xml 文件

  1. 找到Host标签

    <Host name="localhost"  appBase="webapps"
             unpackWARs="true" autoDeploy="true"></Host>
    
  2. 在标签中添加 Context 标签

     <Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true">


        <Context path="xxxx/report" docBase="D:\apache-tomcat-8.5.87\webapps\report" reloadable="true"></Context>

        <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="localhost_access_log." suffix=".txt"
               pattern="%h %l %u %t &quot;%r&quot; %s %b" />
      </Host>
  • path:前缀名称+report
  • doBase:report部署地址

    方法二

  • 在webapps中找到report文件夹,增加前缀名称+#,写成如下格式:hljjy#report
  • 修改前端配置文件:hljjy#report/unieap/pages/platform/common/config.js 把第一行配置设置为:
    window.charts_server = "/hljjy/report";
    
    修改设计器配置文件:hljjy#report/unieap/pages/webdesigner/custom-config.js
    window.report_server = "/hljjy/report/";
    
  • 重启报表服务,清理浏览器缓存即可

results matching ""

    No results matching ""

    results matching ""

      No results matching ""