Andrea Ligios 6656f45f0d BAEL-1783 (#4545)
* BAEL-1783

* tabs to spaces, artifact id renamed

* tabs to spaces

* Added module spring-boot-logging-log4j2

* Removed <name> node

* @GetMapping instead of the older @RequestMapping

* @GetMapping instead of the older @RequestMapping
2018-06-29 21:43:22 -05:00

13 lines
356 B
Java

package com.baeldung.springbootlogging;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringBootLoggingApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootLoggingApplication.class, args);
}
}