* 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
		
			
				
	
	
		
			13 lines
		
	
	
		
			356 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			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);
 | 
						|
    }
 | 
						|
}
 |