Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

springbootservletinitializer maven dependency

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

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);
    }
...
Comment

PREVIOUS NEXT
Code Example
Java :: jsp check if request parameter exists 
Java :: Java Add Elements to an ArrayList 
Java :: generate random number using math.random in java 
Java :: read excel file in java and store into arraylist 
Java :: isnumeric matches in java 
Java :: horizontal recyclerview item width half of screen android 
Java :: singleton implementation 
Java :: Odd or even program in java using a mod operator 
Java :: Implementation of TreeMap Class in Java map 
Java :: how to merge two arrays in java 
Java :: set union java 
Java :: types of methods in java 
Java :: treemap java entryset 
Java :: java regex for ip address 
Java :: mettre caractère de string en majuscule java 
Java :: Error inflating class android.support.design.widget.CoordinatorLayout 
Java :: string java 
Java :: android studio json parser 
Java :: t implements comparable 
Java :: java infinite for loop 
Java :: java do while loop 
Java :: java string loop backwards 
Java :: get field name java 
Java :: string array to string stream java 
Java :: resttemplate get rest api call in java 
Java :: json java 
Java :: java streams 
Java :: java read fule get String 
Java :: can abstract class have non abstract methods in java 
Java :: spring swagger ui login oauth2 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =