🐢🐢꼬부기 LV.2 | 실습•에러/🛡️껍질에 숨기(에러해결)

ORA-01017: invalid username/password; logon denied 에러해결 방법

서화 2025. 11. 3. 12:45

에러난 이유

String url = "jdbc:oracle:thin:@localhost:1521:xe";
String user = "teemo";
String password = "1234";

오라클에 생성한 내이름과 비번이 달라서 생기는 오류이다

해결방법은 내가 생성한 이름과  비번으로 바꿔주는 것이다

String url = "jdbc:oracle:thin:@localhost:1521:xe";
String user = "JSY";
String password = "1234";