我使用 fxml,hibernate 在 Netbeans 7.3.1 上创建了一个java fx应用程序。它在Netbeans中运行时以及从 dist 文件夹运行jar文件时工作正常。数据库操作就好了。但我希望以便携式形式将应用程序导出到另一个系统。所以我使用工具 Wix 和 Inno 5 创建了本机包。但是生成的应用程序在我自己的syntem或其他系统中不起作用。 在运行应用程序时显示异常。我通过将db 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>
我的hibernate 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>
是否有任何额外的配置让应用程序独立工作?
答案 0 :(得分:1)
我修好了...... 我需要做的就是在构建中包含 lib 文件夹...我的不好。