Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Service not found:'META-INF/services/org/apache/activemq/wireformat/default'
  2.  
  3. @BeforeClass
  4. public static void setUpClass() throws Exception {
  5. brokerSvc = new BrokerService();
  6. brokerSvc.setBrokerName("TestBroker");
  7. brokerSvc.addConnector("tcp://localhost:61616");
  8. brokerSvc.start();
  9. }
  10.  
  11. @AfterClass
  12. public static void teardownClass() throws Exception {
  13. brokerSvc.stop();
  14. brokerSvc.waitUntilStopped();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement