Dev_Log 78

[VSCode] FullyQualifiedErrorId : UnauthorizedAccess

[에러 로그] create-react-app : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\Administrator\AppData\Roaming\npm\create-react-app.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/fwlink/?LinkID=135170)를 참조하십시오. 위치 줄:1 문자:1 + create-react-app -V + ~~~~~~~~~~~~~~~~ + CategoryInfo : 보안 오류: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess [에러발생 상황] create-react-app..

Dev_Log 2021.07.20

[MyBatis] java.sql.SQLException: 부적합한 열 유형: 1111

[에러 로그] Cause: org.apache.ibatis.type.TypeException: Error setting null for parameter #1 with JdbcType OTHER. Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLException: 부적합한 열 유형: 1111 [구글번역] 원인 : org.apache.ibatis.type.TypeException : JdbcType OTHER로 파라미터 # 1에 대해 null 설정 오류. 이 매개 변수에 대해 다른 JdbcType을 설정하거나 다른 jdbcTypeF..

Dev_Log 2021.06.23

[Chrome] Mixed Content: The site at was loaded over a secure connection

[에러 로그] Mixed Content: The site at '다운로드 요청을 시도한 url' was loaded over a secure connection, but the file at '해당 다운로드url' was redirected through an insecure connection. This file should be served over HTTPS. This download has been blocked. See https://blog.chromium.org/2020/02/protecting-users-from-insecure.html for more details. [구글 번역] 혼합 내용 : '다운로드 요청을 시도한 URL'의 사이트는 보안 연결을 통해로드되었지만 파일은 '해당 다운로..

Dev_Log 2021.06.19

[Maven] Missing artifact oracle:ojdbc6:jar:11.2.0.3

Missing artifact oracle:ojdbc6:jar:11.2.0.3 [에러 발생 상황] -pom.xml에 ojdbc6 dependency를 추가중에 에러 발생 ✔ Solution 구글링을 한다 Oracle JDBC ojdbc6 Jar as a Maven Dependency I cannot seem to get Maven to bundle the ojdbc6.jar file into my project's war file. I have it working within the POM file when specifying a dependency directly for Hibernate tools. But it won't ... stackoverflow.com 위 스택오버플로우 페이지에 가보면 pom..

Dev_Log 2021.06.17

[Java] javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at535 5.7.8

javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 -Java로 Gmail발송중에 발생한 에러 ✔ Solution 아래페이지 접속후 로그인 - Google 계정 하나의 계정으로 모든 Google 서비스를 Google 계정으로 로그인 accounts.google.com [보안수준이 낮은앱 허용]을 사용으로 변경해준다

Dev_Log 2021.05.25

[Oracle] ORA-01000: maximum open cursors exceeded

ORA-01000: maximum open cursors exceeded ✔ Solution 최대 열린 커서를 초과했습니다.라고 한다 DB작업후 PreparedStatement를 close() 해준다 PreparedStatement pstmt = null; try{ /* * PreparedStatement를 사용한 DB작업 */ }catch( Exception e ){ e.printStackTrace(); }finally{ // finally문을 이용해 항상 pstmt를 닫아주도록 한다 try { if ( pstmt != null) pstmt.close(); } catch (SQLException se) { se.printStackTrace(); } }

Dev_Log 2021.05.24
728x90
반응형