• 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

Create a executable patch for upgrading my application

 
Greenhorn
Posts: 9
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


I want to create a executable jar patch for my desktop application and give it to my clients for updating the previous version of application.

I do not want the existing application on client systems is removed manualy and then installed the new version.

The new version has the following changes:

1- Some tables of database has changed.(new columns, new tables)
2- Some new libraries were added to Classpath of the application.
3- Some new classes were added.

How can i make an executable jar file for upgrading my application to new version?

Thanks.
 
author & internet detective
Posts: 41878
909
Eclipse IDE VI Editor Java
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What kind of database are you using? The answer to this will determine whether it is feasible to do this upgrade in Java.

Also, how did you install the application on their machine in the first place? Were you able to do that in Java?
 
Hosein masbough
Greenhorn
Posts: 9
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Excuse me for delay in responsing.
My database is Postgresql.
I installed the project with setup file and copied the jar files to their places in installing operation.
 
reply
    Bookmark Topic Watch Topic
  • New Topic