15 lines
480 B
Java
15 lines
480 B
Java
|
|
package com.baeldung.flips;
|
||
|
|
|
||
|
|
import org.flips.describe.config.FlipWebContextConfiguration;
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.context.annotation.Import;
|
||
|
|
|
||
|
|
@SpringBootApplication
|
||
|
|
@Import(FlipWebContextConfiguration.class)
|
||
|
|
public class ApplicationConfig {
|
||
|
|
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(ApplicationConfig.class, args);
|
||
|
|
}
|
||
|
|
}
|