will824
will824

Reputation: 2244

Code generation between JSP <-> Swing

Is there any tool that can convert already programmed Swing J2SE into JSP J2EE shell?.

Thanks!

Upvotes: 1

Views: 1175

Answers (1)

Pablo Santa Cruz
Pablo Santa Cruz

Reputation: 181280

No, there is no such tool. Although you might found some attempts to do it, desktop and WEB paradigms are way too different to have a tool that converts between between them properly.

If you absolutely must run your APP on a WEB environment, you might find easier to convert your Swing application into a Web Applet. It's not the same though. An Applet is basically a Swing application running inside a browser. Not a WEB-WEB application.

Upvotes: 3

Related Questions