flowable流程设计器集成到springboot里面
时间: 2023-06-27 07:02:35 浏览: 187
将Flowable流程设计器集成到Spring Boot应用程序中,可以让用户更方便地设计和管理工作流程。下面是一个简单的步骤:
1. 添加Flowable依赖项
在pom.xml文件中添加以下依赖项:
```
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>${flowable.version}</version>
</dependency>
<dependency>
<groupId>org.flowable.ui</groupId>
<artifactId>flowable-ui-modeler-app</artifactId>
<version>${flowable.version}</version>
</dependency>
```
其中,`${flowable.version}`是Flowable版本号。
2. 添加Flowable UI模块
在Spring Boot应用程序中添加Flowable UI模块的配置:
```
@Configuration
public class FlowableConfig extends AbstractFlowableSpringBootConfigurer {
@Bean
public FlowableServlet flowableServlet() {
return new FlowableServlet();
}
@Bean
public ServletRegistrationBean<FlowableServlet> flowableServletRegistration() {
ServletRegistrationBean<FlowableServlet> registration = new ServletRegistrationBean<>(flowableServlet());
registration.addUrlMappings("/flowable/*");
registration.setName("FlowableServlet");
registration.setLoadOnStartup(1);
return registration;
}
@Bean
public ServletRegistrationBean<DispatcherServlet> dispatcherServletRegistration() {
ServletRegistrationBean<DispatcherServlet> registration = new ServletRegistrationBean<>(new DispatcherServlet());
registration.addUrlMappings("/modeler/*");
registration.setName("ModelerServlet");
registration.setLoadOnStartup(1);
return registration;
}
@Bean
public FilterRegistrationBean<FlowableCookieFilter> flowableCookieFilterRegistration() {
FilterRegistrationBean<FlowableCookieFilter> registration = new FilterRegistrationBean<>(new FlowableCookieFilter());
registration.addUrlPatterns("/flowable/*");
return registration;
}
}
```
其中,`FlowableServlet`和`DispatcherServlet`是Flowable UI模块中的两个核心Servlet,`FlowableCookieFilter`是用于设置cookie的过滤器。
3. 配置数据源
在Spring Boot应用程序中配置Flowable所需要的数据源。可以使用自己的数据源,也可以使用内嵌的H2数据库。
4. 运行应用程序
在浏览器中输入`http://localhost:8080/modeler`,即可进入Flowable流程设计器界面。
注意:在第一次访问时,需要输入用户名和密码,可以在`org.flowable.ui.modeler.properties`文件中进行配置。默认的用户名和密码是`admin`和`test`。
以上就是将Flowable流程设计器集成到Spring Boot应用程序中的简单步骤。
阅读全文