-
java.lang.ClassNotFoundException: org.gjt.mm.mysql.DriverData Base/MySQL 2008. 3. 12. 01:10kimho's jsp 를 하다가
java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver 에러가 났다.
C:\Documents and Settings\han58>javap org.gjt.mm.mysql.Driver
Compiled from "Driver.java"
public class org.gjt.mm.mysql.Driver extends java.lang.Object implements java.sql.Driver{
static final int _MAJORVERSION;
static final int _MINORVERSION;
static final boolean debug;
static final boolean trace;
public org.gjt.mm.mysql.Driver() throws java.sql.SQLException;
public synchronized java.sql.Connection connect(java.lang.String, java.util.Properties)throws java.sql.SQLException;
public synchronized boolean acceptsURL(java.lang.String) throws java.sql.SQLException;
public java.sql.DriverPropertyInfo[] getPropertyInfo(java.lang.String, java.util.Properties) throws java.sql.SQLException;
public int getMajorVersion();
public int getMinorVersion();
public boolean jdbcCompliant();
java.util.Properties parseURL(java.lang.String, java.util.Properties) throws java.sql.SQLException;
public java.lang.String host();
public int port();
public java.lang.String database();
public java.lang.String property(java.lang.String);
static {};
}
이걸 봐선 연결은 된거 같은데..
java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver 에러가 자꾸만 났다.
네이버에선 답을 못 찾았다.
하지만 구글에선 답이 있었다.
http://forum.java.sun.com/thread.jspa?threadID=685025&messageID=3988180
마지막에 jugimaster 가 답을 해 놨다.
Hi!
but where will be the mysql jar file
there is no such directory like lib in the mysql
folder
As you probably already found out, the mysql jar file needs to be on the classpath of your java application when you run it.
For example something like:
C:> java -cp mysql.jar MyApplication
:)
Or the mysql jar file could be in your web-app's lib directory if you're running one. For example under Tomcat:
/Tomcat_home/webapps/your-web-app/WEB-INF/lib <--- mysql.jar there!
I hope this helps :)
이걸 보고 lib 폴더를 만들어서 jar 파일을 넣었더니 해결이 되었다.'Data Base > MySQL' 카테고리의 다른 글
답변 게시판 쿼리 (0) 2008.04.11 회원 테이블 생성 쿼리 (0) 2008.04.11 mysql 을 설치했는데...자꾸 삐삐 거리면서 신경 거스르는 소리가 났지만 해결. (0) 2008.04.10 Mysql 설치한 후... (0) 2008.03.07 MySQL commend 출력 및 명령어 (0) 2007.11.28 ResultSet에서 LONG VARCHAR 읽어오기 (0) 2007.11.26 MySQL에서 이런 오류가 발생해서 봤는데... (0) 2007.11.26