일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- MySQL
- 로드밸런서
- 플러터
- AWS
- backend
- 코딩테스트
- 자바백엔드
- 성능테스트
- 레디스
- FLAB
- F-Lab
- 데이터구조
- grafana
- Spring
- 멘토링
- 에프랩
- 부트캠프
- EC2
- 자바
- 백엔드
- github
- java
- redis
- 트러블슈팅
- error
- 후기
- nGrinder
- 알고리즘
- Flutter
- 도커
- Today
- Total
목록error (11)
민스씨의 일취일장
Controller에서 View가 아닌 객체를 반환하는 메서드를 실행하는 중 발생한 오류를 공부하는 글이다. No converter found for return values of type 상황 List를 반환하려고 만든 메서드를 만든 후 Tomcat 실행하여 요청을 보내 보면 오류가 발생한다. 오류내용 No converter found for return value of type: class java.util.ArrayList 오류 파악 객체를 변환해주는 Converter가 없다. 서버에서 View 단으로 데이터를 보낼 때 JSON으로 변환을 해줘야 하는데 현재 객체를 JSON으로 변환해주는 라이브러리가 설치돼 있지 않다. 객체를 JSON으로 변환해주는 라이브러리를 설치해줘야 한다. 해결 방법 Java..
IllegalStateException에 대한 글이다. 상황 새로운 ServiceImple을 만든 뒤 테스트를 실행 중 IllegalStateException: Faild to load ApplicationContext... 이 발생했다. 오류내용 IllegalStateException: Faild to load ApplicationContext ... Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in URL ... Caused by: org.springframework.core.NestedIOException: Failed ..
MyBatis로 Repository 레이어를 구축하면서 테스트 코드를 실행하면서 발생한 오류를 해결하는 과정이다. 상황 MyBatis를 이용해 Repostory 레이어를 구축하면서 Test 코드를 실행할 때 오류가 발생했다. 오류내용 ERROR: org.springframework.test.context.TestContextManager ... Cause: org.xml.sax.SAXParseException; lineNumber: 9; columnNumber: 19; 요소 유형 "typeAliases"의 콘텐츠는 "(typeAlias*,package*)"과(와) 일치해야 합니다. 오류 파악 시도 mybatis-config.xml에서 typeAliases 설정하는 곳에 오류가 있늘 것으로 보인다. 원인 ..
문제점 패스트 캠퍼스의 스프링의 정석 AOP강의 부분 중 root-context-aop.xml 만드는 부분 전후로 실행시 오류가 발생한다. 오류내용 Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from file [/Users/Study/스프링의 정석/ch3/src/main/webapp/WEB-INF/spring/root-context.xml]; nested exception is java.lang.UnsupportedClassVersionError: org/springframework/aop/TargetSource has be..
Java Srping의 Exception 처리에 대해 알게 된 내용들을 시간순으로 정리하는 글이다. 2023년 1월 12일 Exception Exception이 발생한다 throw new Exception("예외 발생"); Exception을 처리한다 try { throw new Exception("예외 발생"): } catch (Exception e) { return "error"; // error.jsp 또는 error.html을 보여준다. } Class 내에 Exception 처리 Method를 만든다 @ExceptionHandler(Exeption.class) public String catcher(Exception e){ return "error"; } // try-catch문에서 catch 부..