20 lines
485 B
Java
20 lines
485 B
Java
package com.interplug.qcast;
|
|
|
|
import org.springframework.boot.builder.SpringApplicationBuilder;
|
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
|
|
|
/**
|
|
*
|
|
*
|
|
* <pre>
|
|
* {@link SpringBootServletInitializer}
|
|
* </pre>
|
|
*/
|
|
public class ServletInitializer extends SpringBootServletInitializer {
|
|
|
|
@Override
|
|
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
|
|
return application.sources(QCastApplication.class);
|
|
}
|
|
}
|