Files
initializr/initializr-generator/src/test/resources/project/java/spring-boot-1.4/ServletInitializer.java.gen

14 lines
391 B
Plaintext
Raw Normal View History

package com.example;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(DemoApplication.class);
}
}