ドライバー取得:私は、MySQLデータベースと私のJava Webアプリケーションを接続したいがないFoundjava.lang.ClassNotFoundExceptionエラー
はcom.mysql.jdbc.Driver私はを通じて私のJava WebアプリケーションとMySQLデータベースの間の接続を作りたいのXAMP。 私はmysql-connector-java-6.0.2.jarという外部jarファイルも追加しましたが、まだこのエラーが発生しています。
私はこのコードを実行しました。
public static void main(String[] args)
{
try {
Class.forName("com.mysql.jdbc.driver");
System.out.println("Driver has been found..");
} catch (ClassNotFoundException ex) {
System.out.println("Driver Not Found"+ex);
}
String url="jdbc:mysql://localhost/hms";
String user="root";
String password="";
Connection con=null;
try {
con=DriverManager.getConnection(url, user, password);
System.out.println("Driver is successfully loaded.");
} catch (SQLException ex) {
System.out.println("Something is not good.");
}
}
可能な重複しているので、あなたは、このために書く必要があります(http://stackoverflow.com/questions/2839321/connect-java-to-a-mysql-database) –