source: src/main/java/edu/gjoko/schedlr/ServletInitializer.java@ 950fa0d

Last change on this file since 950fa0d was cf9cdbf, checked in by Gjoko <goko_kostadinov@…>, 21 months ago

Initial commit.

  • Property mode set to 100644
File size: 423 bytes
Line 
1package edu.gjoko.schedlr;
2
3import org.springframework.boot.builder.SpringApplicationBuilder;
4import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
5
6public class ServletInitializer extends SpringBootServletInitializer {
7
8 @Override
9 protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
10 return application.sources(SchedlrApplication.class);
11 }
12
13}
Note: See TracBrowser for help on using the repository browser.