Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takahashi-h5/902ceee81c6b3bfbc2a4394ba259cb38 to your computer and use it in GitHub Desktop.
Save takahashi-h5/902ceee81c6b3bfbc2a4394ba259cb38 to your computer and use it in GitHub Desktop.
package jp.co.confrage;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(WarApplication.class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment