本篇內(nèi)容介紹了“怎么使用flowable工作流引擎flowable-modeler進行登錄”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)公司是一家專業(yè)從事成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計的品牌網(wǎng)絡(luò)公司。如今是成都地區(qū)具影響力的網(wǎng)站設(shè)計公司,作為專業(yè)的成都網(wǎng)站建設(shè)公司,成都創(chuàng)新互聯(lián)公司依托強大的技術(shù)實力、以及多年的網(wǎng)站運營經(jīng)驗,為您提供專業(yè)的成都網(wǎng)站建設(shè)、營銷型網(wǎng)站建設(shè)及網(wǎng)站設(shè)計開發(fā)服務(wù)!
基于 flowable-6.5.1 版本
flowable-modeler 啟動后,訪問連接 http://localhost:8888/flowable-modeler/ 將會跳轉(zhuǎn)到 flowable-idm 登錄頁面
在 flowable-ui-modeler-conf 的 SecurityConfiguration 添加 filter ,對請求進行攔截
在 FlowableCookieFilter 進入 doFilterInternal 攔截方法,然后進入 redirectOrSendNotPermitted 方法,
然后進入 FlowableCookieFilter 的 redirectToLogin 方法,拼裝 url 跳轉(zhuǎn)到 idm 的登錄頁面
http://localhost:8080/flowable-idm/#/login?redirectOnAuthSuccess=true&redirectUrl=http://localhost:8888/flowable-modeler/
跳轉(zhuǎn)到 登錄界面
getLoginPage 方法獲取到需要跳轉(zhuǎn)到的登錄頁面
前端 angular 匹配 /login 路徑,然后跳轉(zhuǎn)到 views/login.html
最后跳轉(zhuǎn)到 login 頁面,這個頁面可以做 logo 的修改,可以定制為本公司的logo
輸入賬號密碼,根據(jù)配置類,將進入 /app/authentication 進行認證,認證成功后進入ajaxAuthenticationSuccessHandler 進行處理
認證成功后,進入spring-security 的 AbstractAuthenticationProcessingFilter 類,進入其 successfulAuthentication 方法, successHandler 就是配置類的 ajaxAuthenticationSuccessHandler 的實例。
ajaxAuthenticationSuccessHandler 處理類的onAuthenticationSuccess方法,其實就是返回 200 的狀態(tài)碼給前端
進入到前端頁面的 authentication-service.js ,由于是 200 狀態(tài)碼,并且 url
http://localhost:8080/flowable-idm/#/login?redirectOnAuthSuccess=true&redirectUrl=http://localhost:8888/flowable-modeler/
里面 redirectOnAuthSuccess = true , 將會觸發(fā) auth-authConfirmed
進入到前端的 idm-app.js 的 auth-authConfirmed ,觸發(fā) $window.location.href = redirectUrl;
跳轉(zhuǎn) 回 http://localhost:8888/flowable-modeler/
界面顯示的導(dǎo)航菜單欄,是 mainNavigation 遍歷出來的
mainNavigation 是 app.js 定義的數(shù)組,如果不需要太多,可以自行修改定制。
“怎么使用flowable工作流引擎flowable-modeler進行登錄”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!