春天Zeebe
该项目允许在您的Spring或Spring Boot环境中轻松利用Zeebe。 基本上,它是的包装。
如何使用
连接到Zeebe经纪人
只需将@EnableZeebeClient注释添加到您的Spring Boot应用程序中:
@SpringBootApplication
@EnableZeebeClient
public class MySpringBootApplication {
现在,您可以注入ZeebeClient并对其进行处理,例如创建新的工作流实例:
@Autowired
private ZeebeClient client;
部署工作流程模型
使用@Zee
1