* BAEL-1554 - Flips code * BAEL-1554 - Flips code, round 2 * BAEL-1554 - Guide to Flips * BAEL-1554 - update read me * BAEL-1554 - rename "Thing" to "Foo" * BAEL-1554 - rename module to spring-4
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);
|
|
}
|
|
} |