The Debugging Chronicles : "코드의 미학"
The value for the useBean class attribute [signup.SignupBean] is invaild. 본문
오류 원인 분석 해결 방안
The value for the useBean class attribute [signup.SignupBean] is invaild.
sweetseonah1004 2024. 8. 6. 15:28
원인
서버가 톰캣과 연결되어 실행 중인 상태에서 package를 생성 했다면 위와 같은 문제를 발생할 수 있다.
서버에 연결 중인 상태에서 package나 class를 생성 했다면 오류를 발생해
이 때 만든 패키지와 클래스 파일을 가져올 수 없을 수 있다.
해결 방안
서버와 연결을 끊고
새로운 패키지와 클래스를 만들어서 연결 시킨다.
그리고 이때 서버의 연결과 히스트리를 지우고 다시 실행해본다.
'오류 원인 분석 해결 방안' 카테고리의 다른 글
remote: Support for password authentication was removed on (0) | 2024.08.06 |
---|---|
java.lang.NullPointerException: Cannot invoke "String.equals(Object)" because "this.id" is null.... (0) | 2024.08.06 |
ORA-01950: no privileges on tablespace 'USERS' (0) | 2024.07.30 |
이클립스 오라클 드라이버 연결 제거 방법 (0) | 2024.07.30 |
cannot parse null string (0) | 2024.07.25 |