Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
437 bytes
|
Line | |
---|
1 | package finki.diplomska.tripplanner;
|
---|
2 |
|
---|
3 | import org.springframework.boot.builder.SpringApplicationBuilder;
|
---|
4 | import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
---|
5 |
|
---|
6 | public class ServletInitializer extends SpringBootServletInitializer {
|
---|
7 |
|
---|
8 | @Override
|
---|
9 | protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
|
---|
10 | return application.sources(TripPlannerApplication.class);
|
---|
11 | }
|
---|
12 |
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.