“SpringbootServletinitializer Maven Dependency” Réponses codées

SpringbootServletinitializer Maven Dependency

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.1.RELEASE</version>
</parent>
Helpless Hedgehog

SpringbootServletinitializer Maven Dependency

...
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
// import org.springframework.boot.web.support.SpringBootServletInitializer;  // OBSOLETE
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;

@SpringBootApplication
public class SpringBootWebApplication extends SpringBootServletInitializer {

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(SpringBootWebApplication.class);
    }

    public static void main(String[] args) throws Exception {
        SpringApplication.run(SpringBootWebApplication.class, args);
    }
...
Helpless Hedgehog

Réponses similaires à “SpringbootServletinitializer Maven Dependency”

Questions similaires à “SpringbootServletinitializer Maven Dependency”

Plus de réponses similaires à “SpringbootServletinitializer Maven Dependency” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code