BackEnd
@Autowired @Resource @Inject
seowooJeong
2020. 9. 2. 15:49
@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.
.