• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

To Create Executable file for Servlet or JSP program

 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi frndz,

As we know we can create executable JAR file for Standalone application using Swing/AWT(GUI) in core java which can be executed in all java installed machines directly instead of executing it from Eclipse always...

But i wan to know how to create such executable file for Servlet or JSP program.



Thanks
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That's not the way web apps work. Web apps are hosted remotely using an app server such as Tomcat. They're not intended to run locally like an executable program.

That said, there's probably some way to bundle a server and web app in an executable for running locally. It's not common, and it's certainly nothing I've ever considered doing.
 
reply
    Bookmark Topic Watch Topic
  • New Topic