Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. @SpringBootApplication
  2. public class DsWatsonsRecAppCouponApplication {
  3.  
  4. private static final Logger LOG = LoggerFactory.getLogger(DsWatsonsRecAppCouponApplication.class);
  5.  
  6. public static void main(String[] args) {
  7. try {
  8. Class[] sources = new Class[]{
  9. DsWatsonsRecAppCouponApplication.class
  10. };
  11. SpringApplication.run(sources, args);
  12. LOG.info("DsWatsonsRecAppCouponApplication Started Successful");
  13. } catch (Exception e) {
  14. LOG.error("DsWatsonsRecAppCouponApplication Started Failed", e);
  15. throw e;
  16. }
  17. }
  18. }
  19. # title
  20. *asd*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement