使用Preloader单独部署JavaFX

时间:2013-07-23 06:49:49

标签: deployment javafx-2 javafx

我创建了一个JavaFX应用程序,其中包括用于数据库的derby.jar和用于生成报告的Jasper Reports,这意味着我还包含了生成报告所需的35个以上jar文件,并且我还使用了预加载器类来设置动画。装货过程。我决定使用自定义部署ant任务来生成安装程序。以下是部署ant任务

<target name="-post-jfx-deploy">
        <fx:deploy width="${javafx.run.width}" height="${javafx.run.height}"
                    nativeBundles="image"
                    outdir="${basedir}/${dist.dir}" 
                    outfile="${application.title}">
            <fx:application name="${application.title}" 
                            mainClass="${javafx.main.class}"
                            preloaderClass="transconnect.system.preloader.Splash"
                            version="1.1"/>
            <fx:resources>
                <fx:fileset dir="${basedir}/${dist.dir}" includes="*.jar"/>
                <fx:fileset id="preloader-files"
                            requiredFor="preloader"
                            dir="dist"
                            includes="lib/TransConnect System Preloader.jar"/>
               <fx:fileset dir="dist" includes="lib/*.jar"/>
            </fx:resources>
        <fx:info title="${application.title}"
                vendor="${application.vendor}"
                description="A Car Rental System"/>
        <fx:preferences shortcut="true"
                        menu="true"/>
    </fx:deploy>
</target>

但是每次运行产品jar文件时都会收到一个错误,即找不到预加载器类 error

0 个答案:

没有答案