본문 바로가기
반응형
SMALL

IT/실수하지말자14

생각해보자 보호되어 있는 글 입니다. 2022. 8. 26.
[Error] Mapper.class를 찾지 못하는 현상 Error Message class path resource [com/mbti/user/user/entity/UserEmailMapper.class] cannot be opened because it does not exist 상황 데이터 모델링 변경으로 인해 UserEmail을 UserOauth2로 변경했다. 따라서, 기존에 있던 UserEmailMapper가 UserOauth2Mapper로 변경되었지만 시스템에 UserEmailMapper가 남아있어서 찾지 못한다는 에러가 나타났다. 해결 비단 mapper.class 뿐만 아니라, gradle에 추가한 의존성 있는 외부 라이브러리들은 이렇게 이름이 바뀌면 종종 찾지 못하는 경우가 있다. 1. clean build gradle의 경우 clean을 한 번.. 2022. 6. 16.
[Vue.js] 최신 Typescript를 사용할 경우, 발생하는 에러 Property '변수명' has no initializer and is not definitely assigned in the constructor. Vue.js를 인프런 강의를 보면서 따라한 후, 실행하면서 아래 코드에서 위 에러가 발생했다. 해결 방법 https://stackoverflow.com/questions/49699067/property-has-no-initializer-and-is-not-definitely-assigned-in-the-construc Property '...' has no initializer and is not definitely assigned in the constructor in my Angular app i have a component: import { Mak.. 2022. 1. 25.
[Error] git의 다양한 에러들 Gitbash 1. 로그인 오류 remote: HTTP Basic: Access denied - git bash에서 처음 설정할 때, 계정의 email(username) / 비밀번호를 잘못 설정 한 것 해결방법 https://goodteacher.tistory.com/88 git config --system --unset credential.helper 위 명령어를 입력하면 email(username)과 비밀번호를 입력할 수 있는 창이 나타난다. 그러나, 지속적으로 로그인 정보를 묻기 때문에 한 가지 설정을 더 입력해야 한다. git config credential.helper store 명령어 입력 후, 다시 한 번 로그인을 하면 더 이상 묻지 않는다. 2. 충돌 오류 your local changes.. 2021. 12. 14.
[Error] 웹스퀘어 도중 만난 에러들 그지같은 웹스케어 사용 중 만난 에러들 정리 1. SelectBox에서 onviewchange event가 실행되지 않는 경우 Selectbox의 속성 중, ref에 값이 매핑되어 있는 지 확인 2. 그리드 row를 더블클릭하여 index row를 deleteRow 할 때, index+1 row가 삭제되는 경우 더블클릭 시 editor 모드로 들어가는 것과 직접 설정한 더블클릭 함수가 충돌이 나면서 생기는 오류 그리드를 readOnly로 변경하여 사용 이런 말도 안되는 오류가 있는데 왜 웹스퀘어를 사용하는 것인가..? 3. DataCollection 복사 datamap/datalist는 위와 같은 형식으로 만들어진다. id="이름" 으로 검색어 잡고 안에 있는 KeyInfo를 복사해서 붙여넣기하여 사용 .. 2021. 11. 30.
[Error] 자바스크립트 도중 만난 에러들 자세한 설명은 나중에 시간되면 정리하는걸로... await is only valid in async functions and the top level bodies of modules - await을 삭제했더니 간단하게 해결 https://stackoverflow.com/questions/49432579/await-is-only-valid-in-async-function await is only valid in async function I wrote this code in lib/helper.js var myfunction = async function(x,y) { .... return [variableA, variableB] } exports.myfunction = myfunction; and then.. 2021. 11. 25.
반응형
LIST