* [BAEL-2533] formatting json date output in spring boot * [BAEL-2533] removed unused import * [BAEL-2533] moved code examples to new module * [BAEL-2533] clean up - removed code examples from old module * [BAEL-2533] removed maven wrapper
14 lines
333 B
Java
14 lines
333 B
Java
package com.baeldung;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
@SpringBootApplication
|
|
public class SpringBootDataApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(SpringBootDataApplication.class, args);
|
|
}
|
|
|
|
}
|