Programming/SPRING 2

[SPRING/Eclipse] 한글 주석 깨짐 현상 해결

문제 git으로 import한 프로젝트에서 한글 주석이 깨져, 제대로 보이지 않는 현상이 있었습니다. 해결방법 1. 왼쪽 상단의 Window - Preferences를 들어갑니다. 2. General - Workspace에 들어갑니다. 3. Workspace 제일 하단 왼쪽 Text file encoding에 Default(MS949)를 Other(UTF-8)로 변경해줍니다. 4. 설정을 Apply 해준 후, 깨진 주석을 확인합니다. 만약 이 방법으로 해결이 되지 않는다면, 파일 encoding이 euc-kr로 설정되어 있을 확률이 높습니다. 이 경우, 에디터 등을 활용하여 파일의 인코딩이 euc-kr로 맞춰져 있는지 확인해보시기 바랍니다.

Programming/SPRING 2021.09.13

[Spring Mybatis Error] Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'id..

mybatis 연동 중 발견된 오류 Request processing failed;nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'dialogdesigner.idd.getManagerList'. It's likely that neither a Result Type nor a Result Map was specified. 오류의 마지막 문장을 보면, -> It's likely that neither ..

Programming/SPRING 2021.08.05