flowable-ui icon indicating copy to clipboard operation
flowable-ui copied to clipboard

整合Flowable官方的Rest包(flowable-modeler,flowable-idm,flowable-task,flowable-admin,flowable-rest),后端SpringBoot,前端Nginx,前后台分离部署,表单设计器汉化处理,提供在线体验地址

Results 6 flowable-ui issues
Sort by recently updated
recently updated
newest added

Bumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 8.0.16 to 8.0.28. Changelog Sourced from mysql-connector-java's changelog. Changelog https://dev.mysql.com/doc/relnotes/connector-j/8.0/en/ Version 8.0.29 Fix for Bug#21978230, COMMENT PARSING NOT PROPER IN PREPSTMT.EXECUTEBATCH(). Fix for Bug#81468 (23312764), MySQL server...

dependencies
java

Bumps [fastjson](https://github.com/alibaba/fastjson) from 1.2.46 to 1.2.83. Release notes Sourced from fastjson's releases. FASTJSON 1.2.83版本发布(安全修复) 这是一个安全修复版本,修复最近收到在特定场景下可以绕过autoType关闭限制的漏洞,建议fastjson用户尽快采取安全措施保障系统安全。 安全修复方案 :https://github.com/alibaba/fastjson/wiki/security_update_20220523 Issues 安全加固 修复JDK17下setAccessible报错的问题 #4077 下载 https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.83/ 文档 https://github.com/alibaba/fastjson/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98 源码 https://github.com/alibaba/fastjson/tree/1.2.83 fastjson 1.2.79版本发布,BUG修复 这又是一个bug...

dependencies
java

请问如何本地部署前后端呢

很多接口,在业务调用过程中会调用RemoteIdmServiceImpl来获取人员信息。 比如下面这个获取任务的接口,就会使用RemoteIdmServiceImpl `@RequestMapping( value = {"/rest/tasks/{taskId}"}, method = {RequestMethod.GET}, produces = {"application/json"} ) public TaskRepresentation getTask(@PathVariable String taskId) { return this.taskService.getTask(taskId); }` 问题是在调用http接口时,这个url地址不在项目中,请问这个接口是包含在哪个接口包中的,希望能将该接口包引入,谢谢。 `JsonNode json = this.callRemoteIdmService(this.url + "api/idm/users/" +...