@Builder

@RequiredArgsConstructor

@RestController
@RequiredArgsConstructor
@RequestMapping("/example")
public class RequiredArgsConstructorControllerExample {

  private final FirstService firstService;
  private final SecondService secondService;
  private final ThirdService thirdService;
  
  ...
}

@PostConstructor

@PostConstructor → 의존성 주입이 일어난 후 초기화를 수행하는 메서드, service를 수행하기 전에

발생, 이메서드는 다른 리소스에서 호출되지 않는다 해도 수행된다.

@NoArgsConstructor

@AllArgsConstructor