通常在 Tomcat 伺服器部署 完成後,啟動伺服器,使用者需要存取 URL:http://IP:埠/webroot/decision 方可進入數據決策系統。有時使用者希望可以直接透過 IP 就能存取數據決策系統。
透過修改埠號並建立虛擬目錄來實現存取 IP(例如:http://localhost)即可直接進入數據決策系統。
以存取http://localhost為例進行介紹。
如果沒有其他網路程式佔用埠號 80,可以將 Tomcat 伺服器的埠號設定為 80。
80 埠為預設埠,使用者存取報表頁面時就不需要再加上 Tomcat 伺服器的埠號。
1)開啟%Tomcat_Home%\conf\server.xml檔案,修改埠號 8080 為 80,如下圖所示:
程式碼如下所示:
<Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
2)重啟 Tomcat 伺服器,存取http://localhost/webroot/decision即可進入數據決策系統。
每個 Web 伺服器都有預設歡迎畫面,透過修改歡迎畫面,以顯示平台頁面。
在%Tomcat_Home%\webapps\webroot目錄下建立 a.jsp檔案,作為 Web 伺服器的預設主頁,如下圖所示:
檔案下載請參見:a.jsp
a.jsp 呼叫 iframe 整合介面,程式碼如下所示:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><html> <head> <title>FineBI商業智慧</title> <link rel="stylesheet" type="text/css" href="/decision/file?path=/com/fr/web/core/css/leaflet.css&type=plain&parser=plain"/> </head> <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <iframe id="reportFrame" src="decision" allowfullscreen="true" name="itemslist" frameborder="0" width="100%" height="100%"></iframe> </body></html>
注:<link rel="stylesheet" type="text/css" href="/decision/file?path=/com/fr/web/core/css/leaflet.css&type=plain&parser=plain"/> 這行程式碼用於解決決策系統中圖表工具欄全螢幕後地圖顯示異常的問題。
重啟 Tomcat 伺服器,存取http://localhost/webroot/a.jsp即可顯示數據決策系統登入頁面。
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><html> <head> <title>FineReport報表</title> <link rel="stylesheet" type="text/css" href="/decision/file?path=/com/fr/web/core/css/leaflet.css&type=plain&parser=plain"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1, maximum-scale=1.0, user-scalable=no"> </head> <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <iframe id="reportFrame" src="decision" allowfullscreen="true" name="itemslist" frameborder="0" width="100%" height="100%"></iframe> </body></html>
注:HTML5 端設定時需要安裝 HTML5 端存取儀表板/工程
透過修改配置檔案建虛擬目錄。
報表工程 webroot 預設放在%Tomcat_home%\webapps目錄下,啟動伺服器時會載入該工程。建立虛擬目錄後,啟動 Tomcat 伺服器時,透過配置檔案會再次載入 webroot 工程。webroot工程載入兩次,會出現報錯、伺服器閃退等情況。
因此使用者需要將%Tomcat_Home%\webapps目錄下的 webroot 工程行動到 Tomcat 部署目錄以外的位置,並且需要與 Tomcat 工程在相同路徑的磁碟下。
本文將%Tomcat_home%\webapps\webroot資料夾行動到E:\webroot路徑。如下圖所示:
修改%Tomcat_Home%\conf\server.xml檔案,在 server.xml 檔案中 host 標籤之間新增程式碼,如下圖所示:
<Context path="" docBase="E:\webroot" debug="0" reloadable="false" />
說明:
虛擬目錄的名稱
如果希望輸入 IP 地址就顯示主頁,則該鍵值留為空
虛擬目錄的路徑
本文 2.3.1 步驟中設定的 webroot 路徑,本文為D:\webroot
先檢查 %tomcat_home%\conf\web.xml 路徑下有無 web.xml 檔案。
如果有 web.xml 檔案,直接編輯檔案,在檔案末尾 </web-app> 標籤之前,新增一段程式碼顯示自訂歡迎畫面 a.jsp,程式碼如下:
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>a.jsp</welcome-file> <welcome-file>index.jsp</welcome-file></welcome-file-list>
如果沒有 web.xml 檔案,需要在webroot\WEB-INF 目錄下建立 web.xml 檔案,程式碼如下所示:
<?xml version="1.0" encoding="UTF-8"?><web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> <display-name>Template WebApp</display-name> <mime-mapping> <extension>msi</extension> <mime-type>application/x-msi</mime-type> </mime-mapping> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>a.jsp</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
重啟 Tomcat 伺服器,存取 http://localhost,即可進入 a.jsp 頁面,即可存取數據決策系統,如下圖所示:
注:本文存取本機,因此使用 http://localhost,實際存取地址為 http://IP 。
重啟 Tomcat 伺服器,存取 http://IP ,如下圖所示:
注:App 端存取請參見本文 3.2 節。
在使用報表 遠端設計 輸入伺服器地址的時候,webroot 需省去,decision 要保留,詳情如下所示:
配置工作區間範例如下圖所示:
行動端輸入伺服器地址的時候,webroot 需省去,decision 要保留。如下所示:
問題描述
透過 IP 成功存取數據決策系統後,首頁報錯 404 ,如下圖所示:
解決方案
在「目錄管理」節點中修改首頁路徑,將/webroot/Demo.html修改為/Demo.html,如下圖所示:
滑鼠選中內容,快速回饋問題
滑鼠選中存在疑惑的內容,即可快速回饋問題,我們將會跟進處理。
不再提示
10s後關閉
反馈已提交
网络繁忙