• 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

In context of WAS, what is the difference between application bounce and jvm bounce.

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In context of WAS, what is the difference between application bounce and jvm bounce.

In case we only want to reload the data at server startup , whch one should we go for.
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

saakshi jain wrote:In context of WAS, what is the difference between application bounce and jvm bounce.

In case we only want to reload the data at server startup , whch one should we go for.



Doesn't sound like a Spring question. Do you want this in the WebSphere forum?

Thanks

Mark
 
saakshi jain
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes.Please.

Thanks

 
Ranch Hand
Posts: 446
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Application bounce: This is achieved by Stopping & Starting Application either from Console or via Jython scripts.

jvm bounce: This is achieved by Stopping & Starting Application Server either from Console (in ND versions) or via Jython scripts or Shell scripts.

In well ordered world, both the above bounces should handle Application startup/shutdown activities. But there is a good chance that some of your applications singleton classes or static objects are not cleaned up in Application bounce. As long as you handle those for application bounces you can use either of the above.
 
reply
    Bookmark Topic Watch Topic
  • New Topic