今天小編給大家分享一下Java怎么隱藏系統(tǒng)內(nèi)置應用的相關知識點,內(nèi)容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
站在用戶的角度思考問題,與客戶深入溝通,找到??h網(wǎng)站設計與??h網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設計與互聯(lián)網(wǎng)技術結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站制作、網(wǎng)站設計、外貿(mào)網(wǎng)站建設、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、國際域名空間、網(wǎng)頁空間、企業(yè)郵箱。業(yè)務覆蓋??h地區(qū)。點擊平臺主菜單后,出現(xiàn)組件列表界面
其中包含兩部分內(nèi)容:
1)系統(tǒng)內(nèi)置的平臺組件
2)用戶自己設計的門戶應用
如下圖所示:
點擊左右箭頭,會切換到“應用”,其中包含了流程應用管理模塊、內(nèi)容信息欄目和數(shù)據(jù)視圖統(tǒng)計應用。如下圖所示界面:
配置門戶應用、流程應用管理界面、內(nèi)容管理應用和數(shù)據(jù)中心應用的可見和隱藏權限基本一致,用管理員賬號打開對應平臺設計中的應用,在“屬性”中設置可見范圍,如下圖:
如果要控制系統(tǒng)應用的可見和隱藏,我們可以如下操作:
用管理員賬號打開“控制面板”-“系統(tǒng)設置”,進入“界面設置”-“模塊部署”,如下圖:
這里的模塊包括:系統(tǒng)內(nèi)置組件和系統(tǒng)應用,對于系統(tǒng)應用,我們只需要點擊“編輯”按鈕,設置“是否可見”或者“可訪問列表”或者“拒絕訪問列表”,或者我們可以直接“卸載”它。
對于系統(tǒng)內(nèi)置模塊,我們無法在模塊部署界面進行權限和可見性的設置。此時,我們可以修改配置文件。
文件路徑:/o2server/servers/webServer/o2_core/o2/xDesktop/$Layout/applications.json
Json文件內(nèi)容如下:
[ { "name": "ControlPanel", "path": "ControlPanel", "title": "控制面板", "iconPath": "appicon.png", "allowList": [], "denyList": [] }, { "name": "DesignCenter", "path": "DesignCenter", "title": "設計中心", "iconPath": "appicon.png" }, { "name": "TaskCenter", "path": "process.TaskCenter", "title": "辦公中心", "iconPath": "appicon.png", "widgetName": "TaskWidget", "widgetTitle": "待辦列表", "widgetIconPath": "widgeticon.png" }, { "name": "cms", "path": "cms.Index", "title": "信息平臺", "iconPath": "appicon.png" } ]
中allowList表示允許訪問的用戶列表,denyList表示拒絕訪問的用戶列表,可配置人員名稱、角色或群組。
文件路徑:/o2server/servers/webServer/x_component_ControlPanel/$Main/applications.json
Json文件內(nèi)容如下:
[ { "name": "Setting", "path": "Setting", "title": "系統(tǒng)設置", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] }, { "name": "AppMarket", "path": "AppMarket", "title": "應用市場", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] }, { "name": "ANN", "path": "ANN", "title": "神經(jīng)網(wǎng)絡模型", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] }, { "name": "Org", "path": "Org", "title": "組織管理", "iconPath": "appicon.png" }, { "name": "Profile", "path": "Profile", "title": "個人設置", "iconPath": "appicon.png" }, { "name": "BAM", "path": "BAM", "title": "流程監(jiān)控", "iconPath": "appicon.png" }, { "name": "LogViewer", "title": "錯誤日志", "path": "LogViewer", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] } ]
文件路徑:/o2server/servers/webServer/x_component_DesignCenter/$Main/applications.json
Json文件內(nèi)容如下:
[ { "name": "ApplicationExplorer", "path": "process.ApplicationExplorer", "title": "流程管理平臺", "iconPath": "appicon.png" }, { "name": "PortalExplorer", "path": "portal.PortalExplorer", "title": "門戶管理平臺", "iconPath": "appicon.png" }, { "name": "cmsManager", "path": "cms.Column", "title": "內(nèi)容管理平臺", "iconPath": "appicon.png" }, { "name": "DataExplorer", "path": "query.QueryExplorer", "title": "數(shù)據(jù)中心平臺", "iconPath": "appicon.png" }, { "name": "service.ServiceManager", "path": "service.ServiceManager", "title": "服務管理", "iconPath": "appicon.png" }, { "name": "AppCenter", "path": "AppCenter", "title": "應用導出", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] } ]
文件路徑:/o2server/servers/webServer/o2_core/o2/xDesktop/$Layout/components.json
如果在“系統(tǒng)設置” 的 “模塊部署”中也不出現(xiàn)某個內(nèi)置組件,您可以修改一下json文件:
[ { "name": "ControlPanel", "path": "ControlPanel", "title": "控制面板", "visible": true, "iconPath": "appicon.png" }, { "name": "DesignCenter", "path": "DesignCenter", "title": "設計中心", "visible": true, "iconPath": "appicon.png" }, { "name": "TaskCenter", "path": "process.TaskCenter", "title": "辦公中心", "iconPath": "appicon.png", "visible": true }, { "name": "cms", "path": "cms.Index", "title": "信息平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "Setting", "path": "Setting", "title": "系統(tǒng)設置", "iconPath": "appicon.png", "visible": true, "allowList": ["xadmin", "Manager"] }, { "name": "AppMarket", "path": "AppMarket", "title": "應用市場", "iconPath": "appicon.png", "visible": true, "allowList": ["xadmin", "Manager"] }, { "name": "Org", "path": "Org", "title": "組織管理", "visible": true, "iconPath": "appicon.png" }, { "name": "Profile", "path": "Profile", "title": "個人設置", "visible": true, "iconPath": "appicon.png" }, { "name": "BAM", "path": "BAM", "title": "流程監(jiān)控", "visible": true, "iconPath": "appicon.png" }, { "name": "ApplicationExplorer", "path": "process.ApplicationExplorer", "title": "流程管理平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "PortalExplorer", "path": "portal.PortalExplorer", "title": "門戶管理平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "cmsManager", "path": "cms.Column", "title": "內(nèi)容管理平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "DataExplorer", "path": "query.QueryExplorer", "title": "數(shù)據(jù)中心平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "AppCenter", "path": "AppCenter", "title": "應用中心", "visible": true, "iconPath": "appicon.png" } ]
這里也可以設置allowList和denyList,或直接刪除。
系統(tǒng)設置進入方式:以xadmin身份登錄O2OA系統(tǒng),點擊左上系統(tǒng)應用菜單 -> 控制面板 -> 系統(tǒng)設置。
配置項:系統(tǒng)設置 - 移動辦公配置 - 模塊配置:
該配置用于對移動APP中需要開啟的模塊內(nèi)容進行設置以及指定移動辦公首頁。
注意:配置修改后重啟服務器生效。
以上就是“Java怎么隱藏系統(tǒng)內(nèi)置應用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注創(chuàng)新互聯(lián)-成都網(wǎng)站建設公司行業(yè)資訊頻道。