개발중 (617) 썸네일형 리스트형 액셀 / AbstractXlsxView - setContentType 액셀 구현할 때 설정을 이렇게 세 개 했는데, response.setCharacterEncoding("UTF-8"); response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\";"); AbstractXlsxView 를 설정 받았다면 setContentType 을 설정해줄 필요가 없다. response.setCharacterEncoding("UTF-8"); response.setHeader("Content-Disposition", "attachmen.. MY SQL 테이블 복사 / 데이터 복사 MY SQL 에서 테이블 데이터를 함부로 건들이면 안되는 경우가 있다. 그럴 경우에는 Second Table 을 생성해서 관리하는데 CEATE 기존 테이블 구조를 그대로 복사한다 CREATE TABLE BBB like AAA INSERT 기존 테이블 데이터를 그대로 복사한다 방법 1 INSERT INTO AAA SELECT * FROM BBB; 방법 2 INSERT INTO AA ( A1 , A2) SELECT , A1 , A2 FROM BB; 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.. 이전 1 ··· 45 46 47 48 49 50 51 ··· 78 다음