// establish that it's detected the processes and that we can deploy one.
@Bean
CommandLineRunner basics(
final PlatformTransactionManager platformTransactionManager,
final RuntimeService runtimeService) {
return new CommandLineRunner() {
@Override
public void run(String... strings) throws Exception {
runtimeService.startProcessInstanceByKey("waiter", Collections.singletonMap("customerId", (Object) 243L));
}
};