Class ServletApplicationRunner

java.lang.Object
org.springframework.boot.web.servlet.support.SpringBootServletInitializer
com.gsitm.ustra.java.mvc.app.ServletApplicationRunner
All Implemented Interfaces:
org.springframework.web.WebApplicationInitializer

@ComponentScan(nameGenerator=org.springframework.context.annotation.FullyQualifiedAnnotationBeanNameGenerator.class) public abstract class ServletApplicationRunner extends org.springframework.boot.web.servlet.support.SpringBootServletInitializer
  • Field Summary

    Fields inherited from class org.springframework.boot.web.servlet.support.SpringBootServletInitializer

    logger
  • Constructor Summary

    Constructors
    Constructor
    Description
     
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected org.springframework.boot.builder.SpringApplicationBuilder
    configure(org.springframework.boot.builder.SpringApplicationBuilder builder)
     
    protected static void
    run(Class<?> clazz, String[] args)
    Application 구동
    protected static void
    run(Class<?> clazz, org.springframework.boot.builder.SpringApplicationBuilder builder, String[] args)
    Application 구동 (main method)
    protected org.springframework.web.context.WebApplicationContext
    run(org.springframework.boot.SpringApplication application)
     

    Methods inherited from class org.springframework.boot.web.servlet.support.SpringBootServletInitializer

    createRootApplicationContext, createSpringApplicationBuilder, deregisterJdbcDrivers, onStartup, setRegisterErrorPageFilter

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ServletApplicationRunner

      public ServletApplicationRunner()
    • ServletApplicationRunner

      public ServletApplicationRunner(Class<?> startClass)
  • Method Details

    • configure

      protected org.springframework.boot.builder.SpringApplicationBuilder configure(org.springframework.boot.builder.SpringApplicationBuilder builder)
      Overrides:
      configure in class org.springframework.boot.web.servlet.support.SpringBootServletInitializer
    • run

      protected org.springframework.web.context.WebApplicationContext run(org.springframework.boot.SpringApplication application)
      Overrides:
      run in class org.springframework.boot.web.servlet.support.SpringBootServletInitializer
    • run

      protected static void run(Class<?> clazz, String[] args) throws IOException
      Application 구동
      Parameters:
      clazz - 클래스
      args - 인자 값
      Throws:
      IOException
    • run

      protected static void run(Class<?> clazz, org.springframework.boot.builder.SpringApplicationBuilder builder, String[] args) throws IOException
      Application 구동 (main method)
      Parameters:
      clazz - 클래스
      builder - 빌더
      args - 인자 값
      Throws:
      IOException