Advertisement
Guest User

Untitled

a guest
May 20th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. @SpringBootApplication
  2. @PropertySource("classpath:application.properties")
  3. public class ZtmTicketCheckerApplication extends SpringBootServletInitializer {
  4.  
  5. @Override
  6. protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
  7. return application.sources(ZtmTicketCheckerApplication.class);
  8. }
  9.  
  10. public static void main(String[] args) {
  11. SpringApplication.run(ZtmTicketCheckerApplication.class, args);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement