2

I am using Weblogic Application server currently, i would like to know the type of files which definitely requires a restart to function as desired.

As part of enterprise application usage, i know for js and jsp it does not require restart. What else can be, please help me in knowing. Thanks.

Vijay
  • 1,026
  • 3
  • 11
  • 28

1 Answers1

0

All files flagged as resources: images, not dinamic web pages, CSS, javascripts, *.xsd etc.

All other files used by your enterprise application need a weblogic restart.

For example: you have some *.properties files read during the startup of the server to create a singleton. Those files, read ONLY during the startup, need a full weblogic restart in order to be refreshed by your E.Application.

Generally, all files read at the startup and maintained in the server memory, need a full restart of the server.

StarsSky
  • 6,721
  • 6
  • 38
  • 63