1

我在Netbeans 7.3.1上使用fxml,hibernate创建了一个 java fx 应用程序。在 Netbeans 中运行以及从dist文件夹运行 jar 文件时,它工作正常。数据库操作就好了。但我想以便携式形式将应用程序导出到另一个系统。所以我使用工具WixInno 5创建了本机包。但是生成的应用程序在我自己的 syntem 或其他系统中不起作用。运行应用程序时显示异常。我通过将数据库 IP 地址更改为 localhost、127.0.0.1 和我的物理 IP 来检查了几次。但没有工作。我的 java 版本是Java 7 update 40 (jdk1.7.0_40)

这是显示错误的屏幕截图链接:http: //i.imgur.com/popokhh.jpg

我的build.xml包含

<target name="-post-jfx-deploy">
       <fx:deploy width="${javafx.run.width}" height="${javafx.run.height}" 
                 nativeBundles="all"
                 outdir="${basedir}/${dist.dir}" outfile="${application.title}">
          <fx:application name="${application.title}" mainClass="${javafx.main.class}"/>
          <fx:resources>
              <fx:fileset dir="${basedir}/${dist.dir}" includes="*.jar"/>
          </fx:resources>
          <fx:info title="${application.title}" vendor="${application.vendor}"/>
      </fx:deploy>          
    </target>

我的休眠 cfg 文件包含

<hibernate-configuration>
  <session-factory>
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
    <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/sample?zeroDateTimeBehavior=convertToNull</property>
    <property name="hibernate.connection.username">root</property>
    <property name="hibernate.connection.password">root</property>

    <mapping resource="entity/Sample.hbm.xml"/>
  </session-factory>
</hibernate-configuration>

应用程序是否有任何额外配置可以独立工作?

4

1 回答 1

1

我把它修好了......我需要做的就是在构建中包含lib文件夹......我的错。

于 2013-12-21T07:00:08.657 回答