본문 바로가기

개발중/troubleshooting

(87)
Cannot find module 'core-js/package.json' 에러 해결 원래 잘 되던 프로젝트 인데 오랜만에 하려니까 npn run dev 을 하니까 이런 에러가 발생 방법 1 실패 npm add core-js 혹시나 시도 성공 npm i core-js
org.springframework.beans.factory.BeanDefinitionStoreException: 에러 해결 org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [ ~.~.~ ]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'actionLog.keywordStatus' for bean class [ ~.~.~ ] nested exception 코딩할 때는 아무문제 없더가 실행..
Some of selected resources were not committed. 에러 해결하기🏇🏇 SVN ERROR 🏇🏇 Some of selected resources were not committed. 선택한 리소스 중 일부가 커밋되지 않았습니다. Override and Commit 했더니 저래뜬다. 방법 1 실패 했음 방법 2 - 실패 했음 방법 3 - 해결 기존 파일을 백업 뜬다. overrode update받아. 백업 파일을 프로젝트에 저장 commit 🧡 블로그 글이 도움이 되었다면 좋아요 구독 감사합니다 꾸벅 💛
Git 대소문자 변경 Commit 🌊 Git 대소문자 변경 Commit 내 상황은 폴더명 앞글자를 대문자에서 소문자로 바꾸는 와중에 문제가 생겼다. 폴더명 대문자 → 폴더명 소문자 git 명령어로 커버 가능 (블로그 참조) 폴더명 소문자 → 폴더명 대문자 중복 폴더 생김 방법 찾지 못했음 git 폴더를 삭제하는게 최선이 었음
Visual Studio 'M' 표시 없애기 비주얼 스튜디오에서 폴더명을 수정하는 과정에 M 표시가 노란색 줄로 나타나서는 사람을 몹시 거슬리게 했다. 깃이 연동 되어 있어 그렇다. COMMIT 하면 없어진다.
java.io.IOException: Cannot write data, document seems to have been closed already 에러 액셀 로딩바를 해결했는데 이건 또 뭐람 https://soobindeveloper8.tistory.com/390 위에서처럼 제대로 할 일을 해주는데 에러는 왜 뜨는 것일까 java.io.IOException: Cannot write data, document seems to have been closed already 데이터를 쓸 수 없습니다. 문서가 이미 닫혀 있는 것 같습니다. 블로그 삽질 검색어 : getOutputStream Cannot write data, document seems to have been closed already 아래에서 해결 ! 입출력 닫는 다양한 예제 아래 처럼 바꾸고 성공 ! @Override protected void buildExcelDocument( Map mode..
Bean null 에러 Service 생성자에서 Dao를 호출하는 과정에서 null 에러가 나왔다. 내가 로딩되는 순서를 잘못 짚고 있었던 것이다. 생성자에 @Autowired 를 달고 그 안에서 생성 시킬 것! @Service public class actionService { private CompanyController company; private actionLogDao dao; private List logType; @Autowired public actionService(actionLogDao dao, CompanyController company) { this.dao = dao; this.company = company; this.logType = dao.getLogTypeList(); } }
org.springframework.context.ApplicationContextException: Unable to start web server; 에러 해결 org.springframework.context.ApplicationContextException: Unable to start web server; 비어있는 xml 파일이 있는지 확인할것