1. @autowired란? - 필요한 의존 객체의 타입에 해당하는 빈을 찾아 주입해 주는 어노테이션. 2. java에서 사용하는 방법 @RestController @RequestMapping("/auth") public class AuthController{ @Autowired private AuthService authService; 3. kotlin에서 사용하는 방법 lateinit 키워드를 사용해 초기화를 미루는 것으로 간단하게 사용할 수 있다. (field injection 방식의 경우) @RestController @RequestMapping("/auth") class AuthController() { @Autowired private lateinit var authService: AuthSe..