JavaFX 2.0 :: How To Deploy / Package Apps Nashorn Based
May 6, 2014
We can write JavaFX application in JavaScript using Nashorn Engine, but you have to run application with command line like:
> jjs app_all.js -fx
So I wont know how can I deploy application that let you click on and lunch application or make it self-contained application packaging using package tools of JDK 7 Update 6 or later.
View Replies
ADVERTISEMENT
Jul 21, 2014
I created an ant script to create an installer for my JavaFx app:
<?xml version="1.0" encoding="UTF-8"?>
<project name="app-javafx" default="do-deploy" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant">
<property name="java8.jdk.home" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_11.jdk/Contents/Home" />
<property name="javafx.tools.ant.jar" value="${java8.jdk.home}/lib/ant-javafx.jar" />
<target name="init-fx-tasks">
[Code] ....
During compiling I see:
Using base JDK at:
/Library/Java/JavaVirtualMachines/jdk1.8.0_11.jdk
Using default package resource [Bundle config file] (add package/macosx/Info.plist to the class path to customize)
Using default package resource [icon] (add package/macosx/app.icns to the class path to customize)
Creating app bundle: /Users/Utente/Documents/workspaceServer/javafx/target/deploy/bundles/app.app
Config files are saved to /var/folders/q6/vmt_h0tx3rgdbt_4h2_2f3780000gn/T/build6635061168386632777.fxbundler/macosx.
Use them to customize package.
fxbund
ler/macosx. Use them to customize package.
So I get files inside the temp directory and I copied them inside my project target directory. Unfortunally javafxbuilder don't use them to customize the package so I think the path where I have to put that files is wrong.
View Replies
View Related
Dec 3, 2014
I done a small application with Javafx that start an Embedded Jetty. All works fine in Windows also with native package. Instead in Mac it works only before native packaging. Seems that the problem is how relative path are considered.
The tree of the content is this:
myfile.jar
webapp (folder)
libs (folder)
Look at this code:
String webAppDir = "webapp";
File f = new File(webAppDir);
log.debug("Path webapp folder: " + f.getAbsolutePath());
if (!f.exists())
throw new Exception("The folder " + f.getAbsolutePath() + " doesn't exist");
[Code] ....
The problem is that before the packaging in Mac the relative path is that where the main .jar is located an so the code works because the webapp folder is found. Instead after the bundle the path became /Users/MyUser/webapp and of course the folder is not found because it is bundled inside the file.app near the libs folder.
View Replies
View Related
Jul 28, 2014
After some attempts I seen that my preloader is not shown using native package (Windows and Mac).
Running the jar that is run from the file.exe instead I can see the splash screen.
This is the relevant part of my build.xml
<fx:application id="fxApplication" name="app" version="3.0" mainClass="it.app.Main" preloaderclass="it.app.preloader.SplashScreenUi" toolkit="fx" />
As said, running the jar file instead of exe file the splash screen is displayed.
I printed some logs into splash screen class: when I run the app from the jar this logs are printed, instead when I run the app from .exe file these logs are not present.
View Replies
View Related
Apr 30, 2014
My working directory is e:ajava. in package p1 i create two classes c1 and c2. net beans creates three files e:ajavap1srcp1, e:ajavap1srcc1, e:ajavap1srcc2. package runs without a hitch. i create another package p2 under e:ajava. i want to use class c1 in p2. pray what on earth should be my import statement in the p2 source code after the first statement 'package p2'. another related querry what should i include in my class path so as to gain access to c1 and c2 in source code of p2.
View Replies
View Related
Apr 16, 2015
I have a ComboBox -- just a simple ComboBox with string items.
My string items aren't very long (5 letters max), but the ComboBox shows quite wide relative to my strings. So I would like to size my ComboBox to the size of my strings.
I messed around with setting the CellFactory of the ComboBox, and have the Cells produced by the CellFactory set the preferred width of the cells to some constant like 100. That worked in terms of changing the size of the ComboBox to the preferred width of 100.
But what I really want to do is to compute the preferred width from the string items. For that I need to be able to compute how wide a string item will be when rendered. And I guess that depends on the font size used by the ComboBox to render strings, which probably depends on the platform (OS X different to Windows?).
View Replies
View Related
May 22, 2014
Let's say hypothetically you're making a huge program and use a lot of imports (ex import java.util). If you only need a few specific things from java.util, will it use more memory importing java.util.* compared to only importing lets say java.util.Scanner, java.util.ArrayList, etc. Basically does importing a whole package use more (if any at all) memory than only importing specific package parts?
View Replies
View Related
Aug 13, 2014
I want a list of all running application in my java code.I got list of all the running processes by my code but I dont want that. I want only main Application. Like if two application are running in my pc then I should get only those application's Name.
View Replies
View Related
Jan 9, 2014
my IDE doesn't seem to recognize that my program is a Swing app.I get the following error message when I run the app: "jtabledemo.JTableDemo class wasn't found in JTableDemo project."It compiles successfully though.Here is the code verbatim:
package jtableDemo;
// Demonstrate JTable.
import java.awt.*;
import javax.swing.*;
/*
<applet code="JTableDemo" width=400 height=200>
[code]....
View Replies
View Related
Nov 25, 2014
I have 2 different apps, one of them is a java desktop app and the other one is a c# web app. which uses java applet in order to e-sign. The problem is desktop java app requires 1.5.0_14 and on the other hand web app. requires 1.7 and higher version of java.
I installed both java 1.5 and 1.7 versions on my PC. In order to run desktop java app., I go to C:Progra~2Javajre1.5.0_14in and run javacpl to disable 1.7 and enable 1.5. Then I make a shortcut to javaws 1.5.0_14 to my desktop and add the jnlp of this java app to the target of javaws shortcut. After those settings, the java desktop app. runs.
Now I need to also run the web app which requires 1.7 java. In order to run this app. properly Java 1.5 should be disabled, 1.7 enabled on the Java Control Panel settings. Problem is when you run this web app. the settings for 1.5.0_14 breaks down, I mean all of the java versions become enabled in javacpl under C:Progra~2Javajre1.5.0_14in directory. If I restart my PC, I need to reset the java versions. Is there a way to make this happen without a pain in the head?
By the way, I tried to use batch files etc. but not succeded.
View Replies
View Related
Apr 10, 2015
I'm deploying Java 8 update 40 to my users and want to know if there's a way to manage sites that prompt the user with warnings about untrusted and unsigned applets?
i'm using the exception.sites file to manage applicable prompts/warnings for our internal sites, but doesn't look like the exception list works for untrusted and unsigned.
is there a way to manage these from an all users level, particularly with a deployment (ie, SCCM)?
View Replies
View Related
Mar 14, 2014
Generally sessions in web applications expire after a stipulated max inactive interval. To my knowledge primarily the reason is if the session objects are not invalidated they keep exhausting the memory. So my question is
A. Is there any other reason other why web applications timeout the user session after an inactive interval?
B. Social sites never timeout the user session even if you just leave them for the entire day. How do they manage sessions? Don't the active sessions exhaust memory on their servers or JVM to be specific?
View Replies
View Related
Feb 3, 2015
You basically paste a url Into a textarea and choose an Image for the link.The Image link Is then appended to a html file.
I'd like to put everything In a single jar file but I'm not sure what to do so the user can access the html file.
The only two options I can think of are:
a) create the html document on the fly when the jar runs.
b) Is to run a bat command when the jar Is executed that will extract the jar files.
The user can either choose from a number of Images In the logos folder for common websites or add new Images. Since the folder isn't empty , It seems like extracting the jar files Is necessary.
View Replies
View Related
May 26, 2014
I bought a certificate to sign my jars, if a deploy my applet in a html file with out framework, just html and js, the works great, I can call from javascript all public methods from the applet. The real problem is when I try to deploy the same signed jar on a adf project in Jdeveloper. Does not work at all and java execute some warnings and later applet is block, the message say something like "exist some jars signed and not signed" But I am sure that all jars are signed...
I got this:
applet console:
image
All jars are signed, dependencies too.
View Replies
View Related
Mar 6, 2015
I want to develop a website using jsp and servlets.but i have a few questions:
1: I want to use oracle for database, can i use express edition?
2: After writing the code how do i transfer the code to the client
3: How to deploy the website on internet
I am doing for first time
View Replies
View Related
May 13, 2014
I have a large scale enterprise application (5 modules) project using RAD, WAS v7, Java EE 6 (EJB 3.1, JPA), ZK framework.
The project is using RAD as IDE. The problem is that it takes too long to deploy (more than 5 min) when changes are made to the EJB's (although the changes are minor in only one file) but when changes are made to zk framework (the web & presentation layer), it is fast to deploy.
Don't know what cause the problem. Is it because of EJB 3.1/ JPA or RAD/ WAS?
Is it happening in other IDE or applcation server also?
View Replies
View Related
Mar 14, 2014
I would like to know how we can deploy one Web application on multiple server to share the work between them? My first thought is that we just deploy the same war file on different servers that connect to the same database. However, what will happen when a user enter something like [URL]? How can multiple servers share the same domain name and how the requests from different users are redirected to these different server?
View Replies
View Related
Aug 1, 2014
I have data base connection which i have configured via a listener class i configured properly in DD but still i am not able to deploy the project and server log show that startL.java listener class was not found why is this so as config is proper with the name
here is my server log
[2014-08-01T20:53:59.112+0530] [glassfish 4.0] [SEVERE] [] [javax.enterprise.system.core] [tid: _ThreadID=34 _ThreadName=admin-listener(3)] [timeMillis: 1406906639112] [levelValue: 1000] [[
Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: contpack.startL.java]]
**if i remove the Listener tag then app runs fine**
View Replies
View Related
May 4, 2014
I am very new to EJB. Started with Session bean demo which was working fine. (created a jar file which had EJB and a WAR file which had servlet). But face some issues when created MDB . (For that also created a JAR file which had EJB and a WAR file which had servlet).
I have used @JMSDestinationDefinitions({
@JMSDestinationDefinition(name = "java:global/jms/mySalutationQueue", interfaceName = "javax.jms.Queue")
}) in servlet and @ActivationConfigProperty(propertyName = "destinationLookup", propertyValue = "java:global/jms/mySalutationQueue") in MDB. I hope that's fine.
I am using WildFly 8 application server in "standalone-full" mode. But while deploying it I got some errors of missing dependencies. Trace of my application server log is as follows:
09:00:28,511 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-4) JNDI bindings for session bean named Salutation in deployment unit deployment "SalutationProject.war" are as follows:
java:global/SalutationProject/Salutation!packt.Salutation
java:app/SalutationProject/Salutation!packt.Salutation
java:module/Salutation!packt.Salutation
java:global/SalutationProject/Salutation
java:app/SalutationProject/Salutation
java:module/Salutation
[Code] ....
This example is taken from the EJB 3.1 Cookbook's 1st Chapter. I have searched on [URL] .... but didnt get it. Have only used CDI annotations and no xml.
View Replies
View Related
Aug 25, 2014
I am trying to deploy an android application that connects to a java server. I am doing an apointments system, so the client asks for an apointments with a specific office/doctor. What i did, was to create a java server, using object for the offices, and via sockets it communicates with the android client.
The problem is that when i tried to use my (very demo still) app on my phone and sent it to some friends for testing, i coulnt find a way to have my server on the internet.
So I changed to (or trying to) servlet. But, how to do a client server application with servlets. All tutorials i have seen are more on website clients, but thats not what i need.
View Replies
View Related
Jul 5, 2014
Deploy sample J2EE app to WebLogic server
A getting started app is fine, need to understand of deploying a sample application to WebLogic server. Any particular configuration during WLS install?
View Replies
View Related
Feb 21, 2015
How to deploy Java Swing application as windows software. I have tried the following to do this :
I have created jar file for my project after that created exe file using Launch4j and Advanced installer, exe file produced by both software are working fine but those are placing the jar file inside that exe file, My problem is any one who has that exe file can extract and view the source code by decompiling java class file. Is there any way to deploy java application without decompiling the code.
View Replies
View Related
May 30, 2014
I developed an application that is accessing some property files. The condition was that the user should be able to modify the content or parameters of those property file.How can I distribute the application using Java web start that also includes those property file in the client side?
View Replies
View Related
Sep 3, 2014
my new class had me download eclipse and for some reason it won't let me type anything until I create a document. creating a document creates a package and that lets me create a class which then it will let me start typing code...so wtf is wrong with eclipse and why is it bulling me into having this "package" line in my code when I never had anything like that in other ide's?
View Replies
View Related
Mar 28, 2015
I have a folder of classes that I am packaging together. Some classes are being packaged and compiling just fine. My other classes in the same package, however, are saying that they cannot find these classes.
View Replies
View Related
Aug 14, 2014
Though have been playing around with my ebook but finding it difficult to get along with the topic PACKAGE&INTERFACES, I find it challenging to write a package file despite the book I currently studying and online tutorial.. so I want a more explanatory format to comprehend the piece cos without knowing it.
View Replies
View Related