본문 바로가기

분류 전체보기257

ie 11 SecurityError ie11을 사용하지 않는 지금 고객사에서 ie11대응개발 요건이 있어서 vscode 로 대응 개발중에 ie에서 뜬금없는 에러가 발생했다. 잘돌아가던 화면이 갑자기 아래와 같은 에러를 발생했다. SCRIPT5022: SecurityError Uncaught runtime errors: × ERROR SecurityError ERROR SecurityError ERROR 원인 : ie 개발자도 도구를 열어서 발생 해결 : prod 모드로 개발하면 문제 발생하지 않음. 2024. 2. 7.
div keydown 시 focusout 되는 문제 발생원인 atag를 사용하여 선택하는 node를 만들어서 문제 발생. 예제 소스 5Node 1.1.1 6Node 1.1.1.1 해결방법 1 a tag를 그대로 사용할경우. keydown 이벤트 발생후 . 이벤트 적용할 element에 이벤트가 끝나는 시점에 focus를 다시 주면해결. element.removeAttribute("tabindex"); element.setAttribute("tabindex", "0"); element.focus(); 해결방법 2 css 를 이용하는 방법 . display:none 이나 visibility:hidden 은 focus를 사라지게함. 영역을 숨기는 작업을 할때는 hidden 일경우 opacity : 0 height: 0 visible 일경우 opacity : 1.. 2023. 12. 22.
Spring Data Jpa @DynamicInsert 적용되지 않을때. 보호되어 있는 글 입니다. 2023. 11. 30.
DB Object (table, view, sequence, index )DDL 조회 Table DDL 조회 select DBMS_METADATA.GET_DDL('TABLE', TABLE_NAME ) from USER_OBJECTS where OBJECT_TYPE='TABLE'VIEW DDL 조회 select DBMS_METADATA.GET_DDL('VIEW', OBJECT_NAME ) from USER_OBJECTS where OBJECT_TYPE='VIEW'SEQUENCES DDL 조회 select DBMS_METADATA.GET_DDL('SEQUENCE', SEQUENCE_NAME) from USER_SEQUENCESINDEX DDL 조회 select DBMS_METADATA.GET_DDL('SEQUENC.. 2023. 8. 29.
ERROR in Conflict: Multiple assets emit different content to the same filename index.html 에러 내용. ERROR in Conflict: Multiple assets emit different content to the same filename index.html 해결 방법 아래와 같이 다중으로 HtmlWebpackPlugin 을 설정했는지 확인 template를 아래와 같이 설정할경우 에러 발생. 다중으로 설정시 template 영역을 똑같이 셋팅해주면 에러 발생안함. new HtmlWebpackPlugin({ inject: true, }) new HtmlWebpackPlugin({ inject: true, template: 'src/index.html' }), 2023. 7. 12.
gradle 버전이 낮다고 빌드가 되지 않을때 Spring Boot plugin requires Gradle 6.8.x, 6.9.x, or 7.x. The current version is Gradle Spring Boot plugin requires Gradle 6.8.x, 6.9.x, or 7.x. The current version is Gradle 갑자기 gradle 버전이 낮다고 빌드가 되지 않을때 에러 내용 : * What went wrong: A problem occurred evaluating root project 'test'. > Failed to apply plugin [id 'org.springframework.boot'] > Spring Boot plugin requires Gradle 6.8.x, 6.9.x, or 7.x. The current version is Gradle 6.0.1 * Try: Run with --stacktrace option to get the stac.. 2022. 3. 9.