真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

flowable的工作流程

這篇文章主要介紹“flowable的工作流程”,在日常操作中,相信很多人在flowable的工作流程問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”flowable的工作流程”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

10多年的衡山網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整衡山建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“衡山網(wǎng)站設(shè)計”,“衡山網(wǎng)站推廣”以來,每個客戶項目都認(rèn)真落實執(zhí)行。

1. 從官網(wǎng)下載 flowable-6.5.0 :  https://flowable.com/open-source/downloads/

下載完,解壓后,打開目錄 wars

2.找個干凈的 tomcat8 

把 wars 文件目錄里面的

flowable-admin.war  flowable-idm.war  flowable-modeler.war  flowable-rest.war  flowable-task.war

共 5 個 war包放到tomact的 webapps 目錄

3. 然后找到 tomcat / bin / startup.bat 啟動 tomcat

會等待一段時間,所有war包都解壓后

4.找到每個項目中的。 項目 ww.fhadmin.org

比如:\webapps\flowable-admin\WEB-INF\classes  application-dev.properties 這樣的配置文件

修改:改成自己的數(shù)據(jù)庫鏈接地址,數(shù)據(jù)庫名flowable 自己創(chuàng)建,從flowable-6.5.0.zip里面database下面的creat/all 下的sql 腳本執(zhí)行去建表 86張表

spring.datasource.driver-class-name=com.MySQL.jdbc.Driverspring.datasource.url=jdbc:mysql://127.0.0.1:3306/flowable?characterEncoding=UTF-8spring.datasource.username=rootspring.datasource.password=rootflowable.admin.app.server-config.process.port=9999flowable.admin.app.server-config.cmmn.port=9999flowable.admin.app.server-config.app.port=9999flowable.admin.app.server-config.dmn.port=9999flowable.admin.app.server-config.form.port=9999flowable.admin.app.server-config.content.port=9999

修改\webapps\flowable-admin\WEB-INF\classes  flowable-default.properties, 主要就是修改數(shù)據(jù)庫鏈接上,改成mysql的.  項目 ww.fhadmin.org

server.port=9988server.servlet.context-path=/flowable-adminmanagement.endpoints.jmx.unique-names=true# This is needed to force use of JDK proxies instead of using CGLIBspring.aop.proxy-target-class=falsespring.aop.auto=falsespring.application.name=flowable-ui-adminspring.liquibase.enabled=falsespring.servlet.multipart.max-file-size=10MBspring.banner.location=classpath:/org/flowable/spring/boot/flowable-banner.txt# The default domain for generating ObjectNames must be specified. Otherwise when multiple Spring Boot applications start in the same servlet container# all would be created with the same name (com.zaxxer.hikari:name=dataSource,type=HikariDataSource) for examplespring.jmx.default-domain=${spring.application.name}# Expose all actuator endpoints to the web# They are exposed, but only authenticated users can see /info and /health abd users with access-admin can see the othersmanagement.endpoints.web.exposure.include=*# Full health details should only be displayed when a user is authorizedmanagement.endpoint.health.show-details=when_authorized# Only users with role access-admin can access full health detailsmanagement.endpoint.health.roles=access-admin# Spring prefixes the roles with ROLE_. However, Flowable does not have that concept yet, so we need to override that with an empty stringflowable.common.app.role-prefix=# H2 example (default)#spring.datasource.driver-class-name=org.h3.Driver#spring.datasource.url=jdbc:h3:tcp://localhost/flowableadmin#spring.datasource.url=jdbc:h3:~/flowable-db/db;AUTO_SERVER=TRUE;AUTO_SERVER_PORT=9091;DB_CLOSE_DELAY=-1spring.datasource.driver-class-name=com.mysql.jdbc.Driverspring.datasource.url=jdbc:mysql://127.0.0.1:3306/flowable?characterEncoding=UTF-8#spring.datasource.driver-class-name=org.postgresql.Driver#spring.datasource.url=jdbc:postgresql://localhost:5432/flowableadmin#spring.datasource.driver-class-name=com.microsoft.sqlserver.jdbc.SQLServerDriver#spring.datasource.url=jdbc:sqlserver://localhost:1433;databaseName=flowableadmin#spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver#spring.datasource.url=jdbc:oracle:thin:@localhost:1521:FLOWABLEADMIN#spring.datasource.driver-class-name=com.ibm.db2.jcc.DB2Driver#spring.datasource.url=jdbc:db2://localhost:50000/flowableadminspring.datasource.username=rootspring.datasource.password=root

5. 幾個項目的都修改完,關(guān)閉之前運行的tomcat ,重新啟動

都正常啟動后,需要時間久點

訪問 http://127.0.0.1:8080/flowable-admin   用戶名 admin 密碼 text

訪問 http://127.0.0.1:8080/flowable-idm   用戶名 admin 密碼 text

訪問 http://127.0.0.1:8080/flowable-modeler   用戶名 admin 密碼 text

到此,關(guān)于“flowable的工作流程”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)頁題目:flowable的工作流程
轉(zhuǎn)載源于:http://weahome.cn/article/pojogp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部