본문 바로가기
반응형

오류76

The import common cannot be resolved 스크립틀릿 Import 에러 import 오류 발생 해결 : 확인1) 자바 jre 위치 재설정 확인2) 서버 확인 jre 삭제 후 재 import 해도 해결 안됨 server 톰캣에 오류 발생 되어있음 remove - add 2022. 12. 4.
implicit super constructor object() is undefined for default constructor. must define an explicit constructor import 시 JRE System Library 가 import 되지 않아서 생긴 오류 다시 톰캣 서버 설정해주면 된다. 2022. 12. 3.
the import javax.servlet cannot be resolved https://stackoverflow.com/questions/4076601/how-do-i-import-the-javax-servlet-jakarta-servlet-api-in-my-eclipse-project How do I import the javax.servlet / jakarta.servlet API in my Eclipse project? I want to develop with Servlets in Eclipse, but it says that the package javax.servlet / jakarta.servlet cannot be resolved. How can I add javax.servlet / jakarta.servlet package to my Eclipse proj.... 2022. 12. 3.
ORA-03115: 지원되지 않은 네트워크 데이터 유형 또는 표현이 있습니다 오류 : ORA-03115: 지원되지 않은 네트워크 데이터 유형 또는 표현이 있습니다 원인 : - Statement 형식 : Statement stmt = con.createStatement(); ResultSet rs = stmt.executeQuery(sql); - PreparedStatement 형식 : PrepareStatement pstmt = conn.prepareStatement(sql); ResultSet rs = pstmt.executeQuery(); 해결 : preparedsteatement(query); 괄호 안의 query 삭제 2022. 12. 1.
GitBash_Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. 에러 : failed to push some refs to '레파지토리 주소' Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. 원인 : push 하려고 할 때 원격 저장소와 로컬 저장소 내용이 같지 않아서 발생 원격저장소에서 파일을 삭제해버림 해결 : git pull origin master : 작업한 내용과 합쳐서 올리거나 git pull --rebase origin master 후 git push origin master 하면 다시.. 2022. 11. 17.
GitBash_error: src refspec master does not match any, error: failed to push some refs to 'https://github.com/y.git' git commit 없이 push 하려고 해서 발생 -다시 remote 하려고 함 $ git remote add origin https://github.com/yourim0/HTMLCSS.git error: remote origin already exists. - remote 삭제 $ git remote remove origin $ git remote add origin https://github.com/yourim0/HTMLCSS.git $ git remote -v 그래도 안됨 1. 폴더 내 .git 삭제 2. 다시 git init 3. git add . 4. git commit -m "메세지" 5. $ git remote add origin https://github.com/yourim0/HTMLCS.. 2022. 10. 31.
반응형