在Eclipse中创建可运行的jar文件

时间:2016-04-18 17:35:42

标签: java eclipse hibernate jar

  • 我为项目使用sqljdbc驱动程序
  • 我有一个“libs”文件夹来存储所有库
  • 为了能够连接到MSSQLServer,我为sqljdbc4.jar设置了“Native Library Location”。您会看到此本机库位置也位于“libs”文件夹中

enter image description here

  • 一切都还可以,但是当我创建可运行的jar文件时,我有连接问题

     org.hibernate.exception.JDBCConnectionException: Could not open connection
    
  • 它是由“java.library.path中没有sqljdbc_auth”引起的

如何创建正确的可运行jar文件?提前谢谢!

2 个答案:

答案 0 :(得分:0)

您可能需要将sqljdbc驱动程序添加到Classpath Variables,如下所示:

Window -> Preferences -> Java -> Build Path -> Classpath Variables

使用“新建”按钮,您可以添加名称和文件路径。

希望这有帮助!

答案 1 :(得分:0)

好的,我找到了。将驱动程序的sqljdbc_auth.dll添加到System32,不再需要添加本机库位置