본문 바로가기
SMALL

분류 전체보기15

[오류해결]gcc.exe: error: {파일주소}: No such file or directorygcc.exe: fatal error: no input filescompilation terminated. 1. 오류발생 { "label": "save and compile for C", "command": "gcc", "args": [ "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}" ], "group": "build", "problemMatcher": { "fileLocation": [ "relative", "${workspaceRoot}" ], "pattern": { "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning error):\\s+(.*)$", "file": 1, "line": 2, "column": 3, "severity": 4, "message": 5 } } }, { "label": "execute", "co.. 2024. 3. 27.
[오류해결]Exception java.lang.ExceptionInInitializerError: Cannot access defaults field of Properties [in thread "Worker-1: Building"] 문제 server 실행시 Exception java.lang.ExceptionInInitializerError: Cannot access defaults field of Properties [in thread "Worker-1: Building"] 에러가 발생 했다. 해결 org.apache.maven.plugins maven-compiler-plugin 2.5.1 11 11 -Xlint:all true true --------- 내용 추가 ---------- org.apache.maven.plugins maven-war-plugin 3.3.2 maven-war-plugin을 추가 한다. 2024. 3. 26.
[환경설정] VSC에서 C코딩 환경 구축 정보처리기사 실기 1. VSC 실행후 확장 프로그램 설치 2. C의 컴파일러인 gcc을 설치하기 위해 MinGW설치 - 파일 주소 : https://sourceforge.net/projects/mingw/files/ MinGW - Minimalist GNU for Windows - Browse Files at SourceForge.net Authentication Cloud faster, easier, and more user-friendly. Let customers access your online services without passwords and costly SMS fees. sourceforge.net 3. 환경변수 등록 4. 설치 확인 5. VScode 재실행후 tasks.json 내용 복붙 { "versi.. 2024. 3. 19.
[오류해결] jakarta.servlet.ServletException: Handler dispatch failed: java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter 유튜브 서타몽님의 https://www.youtube.com/@jiraynorprogramming1589 서타몽 www.youtube.com SpringBoot + Reactjs(ts) + MySQL] 로그인 API 구현을 따라하면서 마지막 PostMan으로 로그인을 했을시 아래와 같은 에러가 뜬다. (jdk 17사용) 에러를 검색 해보니 JAXB API가 java11에서부터는 완전히 제거 되었다고한다. 그래서 의존성 주입으로 인해 모듈을 추가를 해줘야 했다. dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot.. 2024. 1. 6.
LIST