<aside> π‘
Springμ μλ° κΈ°λ°μ μ€νμμ€ μ ν리μΌμ΄μ νλ μμν¬λ‘, κ°μ²΄ μ§ν₯ νλ‘κ·Έλλ°κ³Ό μμ‘΄μ± μ£Όμ (DI) κΈ°λ°μ κ²½λ κ°λ°μ μ§μ
</aside>
νμν κ°μ²΄λ₯Ό μ€νλ§μ΄ μλμΌλ‘ μ£Όμ ν΄μ£Όλ κ².
@Autowired
, @Inject
, @Resource
κ°μ μ΄λ
Έν
μ΄μ
μΌλ‘ μ£Όμ
κ°λ₯.
ex)
@Component
public class OrderService {
private final PaymentService paymentService;
@Autowired
public OrderService(PaymentService paymentService) {
this.paymentService = paymentService;
}
}