Last change
on this file was 77205be, checked in by gjoko kostadinov <gjokokostadinov@…>, 11 months ago |
Add entire code
|
-
Property mode
set to
100755
|
File size:
423 bytes
|
Line | |
---|
1 | package edu.gjoko.schedlr;
|
---|
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(SchedlrApplication.class);
|
---|
11 | }
|
---|
12 |
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.