error 5

[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

[Warnings] DevTools failed to load SourceMap: Could not load content for chrome-extension

DevTools - Console 에 다음과 같은 warnings 이 뜰 때 해결 방법 DevTools failed to load SourceMap: Could not load content for #####://#####.com/sample.min.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME 1. DevTools 을 켭니다. (단축키 : F12 or Ctrl + Shift + I) 2. 우측 상단의 설정(Settings)을 들어갑니다. 3. Settings - Sources - "Enable javascript source maps" , "Enable CSS source maps" 을 비활성화 해줍니다. 4. 경고가 사라진 것을 확..

[Python Error] IndentationError: unexpected indent

When I run a .py file, there are times when I get an error like that in the terminal. This is a logical error, and the indentation is incorrect. File "c:\Users\Workspace\Python\WPProject.py", line 250 f.write(bodydata.encode()) ^ IndentationError: expected an indented block .py 파일을 실행하면, 터미널에 저런 에러가 뜰 때가 있습니다. 논리적 에러에 해당하며, 들여쓰기가 잘못된 경우입니다. File "c:\Users\Workspace\Python\WPProject.py", line 250..

Programming/Python 2021.01.18