728x90
반응형

Error 131

[ERROR][JAVA] Local variable topCmtCd defined in an enclosing scope must be final or effectively final

람다식을 사용할 때 지역변수의 값을 바꾸지 못한다는 문제 때문에 발생. 1. 변수를 클래스생성하고 불러와서 저장시키기 https://wakestand.tistory.com/432 자바 Local variable '변수명' defined in an enclosing scope must be final or effectively final 에러 해결방법 해당 에러는 람다(Lambda)식을 사용할 때 발생하는 에러인데 String 배열 arr을 stream 형태로 변환한 뒤 forEach를 돌리면서 String s에 ABC를 넣어주려고 하는 코드인데 보면 Local variable '변수명' defined in an wakestand.tistory.com 2. for 문으로 변경 3. .map .filter ..

Error 2023.11.11

[Error]The file at 'blob:<URL>' was loaded over an insecure connection. This file should be served over HTTPS.

https://stackoverflow.com/questions/35178135/how-to-fix-insecure-content-was-loaded-over-https-but-requested-an-insecure-re How to fix "insecure content was loaded over HTTPS, but requested an insecure resource" This URL: https://slowapi.com I can't find the insecure content and the Chrome keeps complaining, Any ideas? stackoverflow.com "https" 사이트에서 "http"를 통해 액세스하려고 합니다. "https" 콘텐츠를 사용하는 것이 가..

Error 2023.10.15

[Error][Eclipse][Git] 특정 파일이 커밋목록에 안올라가는현상

특정 폴더아래 파일을 생성하거나 수정해도 커밋목록에 들어가지 않아서 처음에 ignore 생각하긴했는데 없어서 한참을 헤맸다. 근데 안올라가는 파일에 ? 가 안뜨는게 깃에 무시당하고 있는거라고 하는 게시글을 몇개 보고 다시한 번 찾아보니 최상위 프로젝트 파일에 있는 .gitignore 파일 말고 그 하위파일에 .gitignore 안에 설정되어있었다. 삭제하니 커밋목록에 올라갔다 ㅜㅜㅜㅜㅜㅜㅜ 혹시라도 gitignore 파일 한개만 확인해보고 안되시는 저같은 분들이 있다면 하위폴더도 확인해보세요 언제 설정된거지 정말....

Error 2023.10.04

[Error][Sql] Column 'INS_DT' in where clause is ambiguous

https://imswengineer.tistory.com/521 [Error][SQL]Column '컬럼명' in order clause is ambiguous https://2day-is-seonday.tistory.com/90 MYSQL | Column '컬럼명' in order clause is ambiguous join하는 경우 보통 발생하는 에러문제로, join할때 order by할 테이블명이 불명확할때 발생한다. 나의 경우, order by id 였는데, imswengineer.tistory.com 서로다른 테이블을 조인했을때 같은 컬럼이 있으면 생기는 에러

Error 2023.10.02

[Errror][js] Uncaught TypeError: Assignment to constant variable.

https://itprogramming119.tistory.com/entry/Javascript-Assignment-to-constant-variable-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95 Assignment to constant variable 해결 방법 Assignment to constant variable 에러 해결 방법에 대하여 알아보겠습니다. 이 에러는 Javscript ES6이상을 사용하면 어디서든 발생할 수 있는 에러입니다. 따라서, Javscript뿐만 아니라 Javscript기반인 React, Vue itprogramming119.tistory.com const 로 선언하고 값이 바뀌어서 난 에러

Error 2023.09.20

[Error] ReferenceError: can't access lexical declaration 'X' before initialization

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Cant_access_lexical_declaration_before_init ReferenceError: can't access lexical declaration 'X' before initialization - JavaScript | MDN The JavaScript exception "can't access lexical declaration `variable' before initialization" occurs when a lexical variable was accessed before it was initialized. This happens within any..

Error 2023.09.11

[Error][Html] Autofocus processing was blocked because a document already has a focused element

Autofocus processing was blocked because a document already has a focused element => 기존 화면 위에 모달창 안에있는 input에 autofocus 설정을 해서, 이미 focus가 잡힌 element가 있어서 에러 발생 팝업이 보여지는 이벤트에 추가 or popup init 할 때 focus 이벤트 추가 this._getEl().one('shown.bs.modal', async ()=>{ this._getEl().find('input[name=bdPwd]').focus(); }); initData = () => { this._getEl().find('input[name=bdPwd]').focus(); }

Error 2023.08.18
728x90
반응형