@Autowired //Support from Spring
private LoginService logoutService; //LoginService type linked.
@Autowired
private LogoutService loginService; //LogoutService type linked.
@Inject //Support from JAVA
private LoginService logoutService; //LoginService type linked.
@Inject
private LogoutService loginService; //LogoutService type linked.
@Resource
private LoginService logoutService;
// LogoutService type linked but data type is LoginService. An Error Occurs.
@Resource
private LogoutService loginService;
// LoginService type linked but data type is LogoutService. An Error Occurs.
.
'BackEnd' 카테고리의 다른 글
[Mybatis] resultMap collection을 이용한 중첩 데이터 출력하기 (2) | 2025.02.04 |
---|---|
Jenkins gradlew permission denied error (0) | 2022.04.01 |
Lombok을 이용한 Bulider Pattern (0) | 2021.08.19 |
Monolithic Architecture 그리고 MSA (0) | 2021.05.14 |
JAVA Map, List JQuery Implementation (0) | 2021.02.23 |