我有以下问题:
我将一个现有的项目导入了eclipse。该项目引用了库mysql-connector-java-5.1.13-bin.jar
。
当我尝试运行该项目时,我收到以下错误:
Trying to add database driver (JDBC): RmiJdbc.RJDriver - Warning, not in CLASSPATH?
Trying to add database driver (JDBC): jdbc.idbDriver - Warning, not in CLASSPATH?
Trying to add database driver (JDBC): com.mckoi.JDBCDriver - Warning, not in CLASSPATH?
Trying to add database driver (JDBC): org.hsqldb.jdbcDriver - Warning, not in CLASSPATH?
Exception in thread "main" com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
所以我试图通过使用终端来找出mySQL是否已安装:type -a mysql命令。结果:type:mysql:not found 现在我下载并安装了mysql。它列在/ usr / local / now中。但是命令:type -a mysql仍然显示相同的结果,java应用程序产生相同的错误。 我需要做什么?
答案 0 :(得分:0)
您需要检查mysql进程是否正在运行...
$ ps ax | grep mysql
...而且mysql驱动程序jar实际上在你的项目类路径(库)中。