在單一伺服器上主控兩個AEM Forms工作區執行個體 hosting-two-aem-forms-workspace-instances-on-one-server
AEM Forms的預設安裝與設定只允許伺服器上有一個AEM Forms工作區。 不過,您可能需要在單一AEM Forms伺服器上託管兩個不同的AEM Forms工作區例項。 這兩個執行個體可透過不同的URL存取。
AEM Forms管理員可自訂工作區,以建立兩個不同的URL,並讓兩個工作區可在同一部伺服器上使用。 在這篇自訂文章中,您可以假設兩個工作區可在https://'[server]:[port]'/lc/ws和https://'[server]:[port]':/lc/ws2存取。
請依照下列步驟設定AEM Forms工作區。
-
在伺服器上安裝AEM Forms工作區的開發套件。 請參閱開發封裝以取得建立它的指示。
-
透過存取
https://'[server]:[port]'/lc/crx/de/index.jsp,以系統管理員身分登入CRXDE Lite。 -
在/content處複製節點ws,並在/content處貼上。 將節點重新命名為ws2。 按一下 全部儲存。 在此節點的屬性中,將
sling:resourceType的值變更為ws2。 按一下 全部儲存。 -
從/libs複製資料夾ws並貼到/apps。 將資料夾重新命名為ws2。 按一下 全部儲存。
-
在
GET.jsp的/apps/ws2中,進行下列程式碼變更。 取代下列專案code language-html <html lang="en"> <head> <meta charset="utf-8"> <title>Workspace Next</title> <meta http-equiv="refresh" content="0;URL='/lc/libs/ws/index.html'" /><html lang="en"> <head> <meta charset="utf-8"> <title>Workspace Next</title> <meta http-equiv="refresh" content="0;URL='/lc/libs/ws/index.html'" />,程式碼如下
code language-html <html lang="en"> <head> <meta charset="utf-8"> <title>Workspace Next</title> <meta http-equiv="refresh" content="0;URL='/lc/apps/ws2/index.html'" /> -
在
registry.js的/apps/ws2/js中,變更範本路徑以參考位於/apps/ws2/js/runtime/templates的範本。 取代下列程式碼code language-css "tasklist" : { "name": "tasklist", "path": "tasklistview", "model": "tasklist", "template": "text!/lc/libs/ws/js/runtime/templates/tasklist.html", "utility": "utility", "view": "taskview", "errorModel": null },程式碼如下
code language-css "tasklist" : { "name": "tasklist", "path": "tasklistview", "model": "tasklist", "template": "text!/lc/apps/ws2/js/runtime/templates/tasklist.html", "utility": "utility", "view": "taskview", "errorModel": null } -
在
userinfo.js的/apps/ws2/js/runtime/models和/apps/ws2/js/runtime/views中,將字串/lc/content/ws變更為lc/content/ws2。 -
在
/apps/ws2/js/runtime/services/service.js中,將getLocalizationData函式中的路徑變更為指向/lc/apps/ws2/Locale.html。 -
若要參考新Workspace的
pdf.html,請在/apps/ws2/js/runtime/views/forms/pdftaskform.js中變更pdf.html的路徑。 -
若要參考新Workspace的
pdf.html,請在/apps/ws2/js/runtime/templates變更startprocess.html、taskdetails.html和processinstancehistory.html中的pdf.html和WsNextAdapter.swf路徑。 -
複製
/etc/map/ws資料夾並貼到/etc/map。 將新資料夾重新命名為ws2。 按一下「儲存全部」。 -
在
ws2的屬性中,將sling:redirect的值變更為content/ws2。 -
將
sling:match的值變更為^[^/\||]/[^/\||]/ws2$。