1) @Slf4j ( > Lombok)Log log = new Log() 객체 생성 -> @Slf4j를 적으면 spring builder에서 log객체를 주입한다.매개값은 String만 가능하다.package com.example.sakila.controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;import lombok.extern.slf4j.Slf4j;@Slf4j @Controllerpublic class HelloController { @GetMapping("/hello") public String hello() { // loggin 프레임워크..