본문 바로가기

Issue 해결

[Git]Git Push할 때 Email관련 라인이 있다면 푸쉬가 안된다? (Block command line pushes that expose my email) 안녕하세요 인포돈 입니다. Git Push error: GH007 오류 Git에서 Push를 할 떄 아래와 같은 오류 문구가 나타날 수 있다. 이때 우리는 간단히 몇가지 해결방안으로 해결해 볼 수 있다. Total 13 (delta 2), reused 0 (delta 0), pack-reused 0 remote: Resolving deltas: 0% (0/2) remote: Resolving deltas: 50% (1/2) remote: Resolving deltas: 100% (2/2) remote: Resolving deltas: 100% (2/2), completed with 2 local objects. remote: error: GH007: Your push would publish a priv.. 더보기
[MyBatis - Spring]Parameter not found. available parameters are 오류 안녕하세요 인포돈 입니다. * 참고사항 - 개발환경은 Intellij을 기준으로 작성되었습니다. - Spring 환경에서 사용하는 MyBatis입니다. MyBatis 인자를 인식하지 못하는 문제 MyBatis를 활용하다 보면, 가끔씩 인자를 인식하지 못하는 경우가 있다. 그렇다면 어떠한 경우에 이러한 오류가 생길까? 우선 내가 접한 문제는 아래 코드에서였다. @Insert(""" """) void write(String subject, String content); 단순히 값을 넣어주는 코드였다. 그러나 알 수 없는 이유에서 subject의 인자를 찾을 수 없다는 오류가 계속해서 나왔다. 이를 좀만 검색해 본다면, 금방 해결할 수 있다. 바로 아래 코드처럼 어노테이션을 붙여서 명확히 표현해 주면 된다. .. 더보기
[타임리프]org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing 안녕하세요 인포돈 입니다. 타임리프 템플릿을 랜더링 할 때, 자원을 찾지 못하는 오류 프로젝트에서 타임리프를 활용하면서, Model에 값을 넣어주어 활용하였다. 오류가 나는 부분은 아래와 같다. 오류 내용 org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/chatbot/chat.html]") Caused by: org.attoparser.ParseException: Could not parse as expression: "favoriteKeyword : ${favoriteKeywords}" (template: "cha.. 더보기
[윈도우11 업데이트 후 Virtual Box 어뎁터 오류]Nonexistent host networking interface, name 'VirtualBox Host-Only Ethernet Adapter' (VERR_INTERNAL_ERROR). 안녕하세요 인포돈 입니다. 윈도우 11 업데이트 후 Virtual Box 오류 Virtual Box로 리눅스를 실험하던 도중 윈도우 11업데이트를 하게되었다. ..... 생각지도 못하게 Virtual Box를 실행 해보니 아래와 같은 문구가 뜨면서, 실행이 되지 않는 것을 알 수 있었다. Nonexistent host networking interface, name 'VirtualBox Host-Only Ethernet Adapter' (VERR_INTERNAL_ERROR). 해당 오류의 이유는 윈도우 업데이트 후 Hosst-Only Ethernet Adapter가 삭제되어버리면서, 연결이 안 되는 오류가 생기는 것이다. 조금 오류에 대해서 찾아보니, 수동으로 Host Only Ethernet Adapt.. 더보기
[JPA Lazy 지연로딩 오류]org.hibernate.LazyInitializationException: 안녕하세요 인포돈 입니다. Spring JPA를 학습해보면서, LazyInitializationException 에러를 만나서 해결해보았다. 오류 코드 org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: com.example.shadow.domain.shadow.entity.Keyword.flowcharts, could not initialize proxy - no Sessio 우선 Lazy와 Eeager에 대해 이해해야 쉽게 해결할 수 있다. 쉽게 한국말로 표현해 보면, 지연 로딩과 즉시 로딩이라고 부를 수 있다. 하나의 예시를 보자 @Entity @Getter @Setter public .. 더보기