我已经使用Ant构建工具构建了项目。当项目运行并尝试连接到数据库时,会出现以下错误:
[java] java.lang.ClassNotFoundException:com.mysql.jdbc.Driver不是 由net.java.sip.communicator.swingui找到[1]
我使用IntelliJ将mysql-connector.jar添加到项目中,但无法正常工作。 我还使用以下代码更新了build.xml文件,但没有用。
<classpath>
<pathelement path="${classpath}"/>
<pathelement location="lib/mysql-connector.jar"/>
</classpath>
如何将mysql-connector.jar正确添加到项目中?