Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 590 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 590 Bytes

Start up by running

mvn spring-boot:run

The code does not have any external dependencies and should start up cleanly. If you are interested in using RabbitMQ as the external broker to work with Websockets, then the change should be to bk.tailfile.config.WebSocketDefaultConfig class:

//		config.enableStompBrokerRelay("/topic/", "/queue/");
config.enableSimpleBroker("/topic/", "/queue/");

TO:

 config.enableStompBrokerRelay("/topic/", "/queue/");
//	config.enableSimpleBroker("/topic/", "/queue/");

Just bring up an instance of RabbitMQ and it should work cleanly.