java - JFrame on website -


i have application composed of many jframe objects (using java , netbeans). 'main' frame has 4 buttons , each button opens frame. problem want whole application run on web website.

i considering 3 possible scenarios (from research):

  1. use java web start
  2. convert jframe japplet
  3. create scratch java web application

i hoping maybe can give me help, , guidelines of option should opt for.

the quickest option modify application run applet (yes, involve making japplet jframe). however, should realize java applet considered outdated technology. mobile devices won't run them , popular desktop browsers won't (mac chrome). what's more, oracle requires applets signed in order run default security settings. means purchasing yearly (~$200) signing certificate.

java web start not fundamentally different applets , suffer same issues above.

think again choice of technology. java web application (e.g., spring mvc) or javascript application (e.g., gwt, jquery) better choices.


Comments

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -