我正在构建一个使用mysql数据的项目(Parrent)。我没有为此编写新代码,而是希望在之前完成的另一个项目(SQLConnection)中重用代码。
通常,我会将SQLConnection导入Parrent:
Java Build Path => Project => Add
但是当我这样做并从SQLConnection调用函数时,它会显示错误
Cannot determine embedded database driver class for database type NONE
我知道有人使用Maven build
取得同样的成绩,但我不知道如何使用Maven
。
如果有人遇到过这种情况,请给我留言。
谢谢!
答案 0 :(得分:0)
我希望你已经拥有一段在SQLconnection项目中访问MySQL数据的java代码。创建一个SQL连接jar,在Parrent项目中将其用作maven依赖项(Pom.xml)。注入依赖项后,在Parrent类中导入SQL连接的java类以进行访问。
基本上我要求将SQLconnection作为Parrent项目的库。