9c5ecd8f8d
* rest with spark java * 4 * Update Application.java * indentation changes * spring @requestmapping shortcuts * removing spring requestmapping and pushing spring-mvc-java * Joining/Splitting Strings with Java and Stream API * adding more join/split functionality * changing package name * testcase change * adding webutils * adding testcase for WebUtils and ServletRequestUtils * adding testcase * spring-security-stormpath
26 lines
482 B
Java
26 lines
482 B
Java
/**
|
|
*
|
|
*/
|
|
package com.baeldung;
|
|
|
|
import org.springframework.boot.CommandLineRunner;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* @author abhinab
|
|
*
|
|
*/
|
|
@SpringBootApplication
|
|
public class Application implements CommandLineRunner {
|
|
|
|
@Override
|
|
public void run(String... args) throws Exception {
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(Application.class, args);
|
|
}
|
|
|
|
}
|