에러8 [Oracle] ORA-01033 에러 발생 시 ERROR 문구 ORA-01033: ORACLE의 초기화 또는 정지 처리가 진행중입니다 혹은 ORA-01033: ORACLE initialization or shutdown in progress Oracle 사용 중 ORA-01033 에러가 발생하였다. 아래 링크의 해결 방법을 따라한 결과, ORA-01033 에러를 해결할 수 있었다. https://lavinue.tistory.com/11 ORA-01033 에러 시 해결방법 ORA-01033: ORACLE의 초기화 또는 정지 처리가 진행중입니다혹은 ORA-01033: ORACLE initialization or shutdown in progress 에러가 발생했을 경우 대처법 아래와 같이 따라하면 복구 하실 수 있습니다. --------.. lavinu.. 2022. 10. 21. [MySQL] ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: YES) 문제 상황 명령 프롬프트에서 MySQL을 실행하려 했더니 다음과 같은 에러문구가 떴다. 해결 방법 MySQL 실행 명령문을 제대로 입력하지 않아 발생한 에러로 다음과 같이 입력하면 잘 실행된다. MySQL 실행 명령문 > mysql -u 사용자명 -p (DB이름) * 실행 명령문을 잘 입력했어도 password를 잘못 입력하면 같은 에러문구 뜸 실행 화면 명령문 입력 후 'Enter password: ' 문구가 뜨면 비밀번호를 입력하면 된다. using password: NO 나의 경우 잘못 입력한 실행문에 비밀번호를 뜻하는 '-p'를 포함시켰기 때문에 'Enter password: ' 뒤에 비밀번호를 입력한 후 에러 문구가 떴다. 그리고 에러 문구 맨 뒤에는 (using password: YES)가 표.. 2022. 6. 13. [Spring] STS에서 Resource cannot be resolved to a type 해결 방법 문제 상황 @Resource 애너테이션을 사용하려 했더니 Resource cannot be resolved to a type 문구가 떴다. 방법 1. pom.xml에 dependency 추가 (둘 중 택1) 1-1. pom.xml 에 javax.annotation dependency 추가 javax.annotation javax.annotation-api 1.3.2 OR 1-2. pom.xml 에 tomcat-annotations-api dependency 추가 * : 설치된 톰캣 버전에 맞추기 org.apache.tomcat tomcat-annotations-api 8.5.73 방법 2. Apache Tomcat 라이브러리 추가 1. 해당 프로젝트 우클릭 🠒 Build Path 🠒 Configure B.. 2022. 5. 11. [Spring] Could not write JSON: (was java.lang.NullPointerException); (feat. Jackson 이해하기) 문제 상황 @Controller public class CommentController { @Autowired CommentService commentService; // 지정된 게시물의 모든 댓글을 가져오는 메서드 @GetMapping("/comments") // comments?bno=1080 GET @ResponseBody public List list(Integer bno){ List list = null; try { list = commentService.getList(bno); System.out.println("list = " + list); } catch (Exception e) { e.printStackTrace(); } return list; } } 컨트롤러에서 게시글 번호(bno)를 .. 2022. 4. 7. 이전 1 2 다음