java(3)
-
STS오류 : Impl required a bean of type 'Mapper' that could not be found.
오류 발생! STS(이클립스) 오류화면 2023-07-28 13:46:34.574 ERROR 17952 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPLICATION FAILED TO START *************************** Description: Field businessTripMapper in com.xxx.businessTrip.service.impl.BusinessTripServiceImpl required a bean of type 'com.xxx.businessTrip.mapper.BusinessTripMapper' that could not be foun..
2023.07.28 -
자바 Object to String 변환
Object abc = "ABC"; String abc2 = String.valueOf(abc);
2022.11.08 -
이클립스 변수명 한번에 바꾸기(Refactor)
요약 : Alt +Shift + r 마우스로 바꾸기 1. 바꿀 변수 클릭 2. 마우스 우클릭 ➔ Refactor ➔ Rename 3. 변수명 변경 4. 엔터로 선택해제 키보드로 바꾸기 1. 바꿀 변수 클릭 2. Alt +Shift + r 3. 변수명 변경 4. 엔터로 선택해제
2022.10.06