Flowable Engage Configuration
Flowable Engage uses Spring Messaging for real time communication and needs an additional annotation to initialize the messaging components.
For this, you need to add the @EnableWebSocketMessageBroker
annotation to your
Spring Boot application class so it looks like this:
@SpringBootApplication
@EnableWebSocketMessageBroker
public class <MainClass>Application {
public static void main(String[] args) {
SpringApplication.run(<mainclass>Application.class, args);
}
}
where <mainclass>
is the name of the main class specific to your application.