Dev/오류 해결 방법 정리 Dev/오류 해결 방법 정리 2023. 2. 20. sqlalchemy.cyextension.resultproxy.BaseRow.__getitem__ TypeError 결론만 말하면 sqlalchemy 버전이 1인지 2인지 체크하세용.. 에러 메세지 로그 C:\Users\Journi\.virtualenvs\dmp.crawler-yT2d20J8\Scripts\python.exe C:/Users/Journi/task/igaw_repository/dmp.crawler/commerce/main.py -code c_ll -limit 30 -save_manual_logos false ERROR tuple indices must be integers or slices, not str Traceback (most recent call last): File "C:\Users\Journi\task\igaw_repository\dmp.crawler\commerce\main.py", lin.. Dev/오류 해결 방법 정리 2022. 3. 22. Request processing failed; nested exception is java.lang.NullPointerException mockito 이용시 에러 발생 - 변경 전 Mockito.when(boraDomainService.getDomain(any())).thenReturn(resultMessage.success()); - 변경 후 Mockito.when(boraDomainService.getDomain(anyLong())).thenReturn(resultMessage.success()); 원인 public ResultMessage getDomain(long domainIdx) {} Dev/오류 해결 방법 정리 2022. 2. 13. No serializer found for class XXX and no properties discovered to create BeanSerializer 상황 : DB에서 읽어온 Entity를 Dto로 response 하는 과정에서 에러 발생 내용 : No serializer found for class XXX and no properties discovered to create BeanSerializer 해결 방법 : Dto 필드에 @JsonProperty 추가 public class UserInfoDto { @JsonProperty private String email; public UserInfoDto(String email) { this.email = email; } } 참고: https://steady-hello.tistory.com/90 Dev/오류 해결 방법 정리 2019. 4. 23. [Android] 안드로이드 스튜디오 애뮬레이터 실행 오류 오류 메세지 Emulator: ERROR: x86 emulation currently requires hardware acceleration! Please ensure Intel HAXM is properly installed and usable. CPU acceleration status: HAX kernel module is not installed! 해결방법 "Intel Hardware Accelerated Execution Manager" 가 필요합니다. intel haxm을 다운로드하면 해결됩니다. 출처 : 한빛 아카데미 자료실 http://download.hanbit.co.kr/exam/4438/ http://download.hanbit.co.kr/exam/4438/ 한빛아카데미 :: 예제소.. 이전 1 다음