facebook

[WebLogic] How do I change the resource refresh interval?

  1. MyEclipse IDE
  2.  > 
  3. FAQ – Development
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #268007 Reply

    Riyad Kalla
    Member

    You can change the resource refresh interval (the time WebLogic waits before checking for changed resources) in WebLogic by including a properly formatted weblogic.xml file in your applications WEB-INF directory. The following is an example file:

    <!DOCTYPE weblogic-web-app PUBLIC "-//BEA
    Systems, Inc.//DTD Web Application 7.0//EN"
    "http://www.bea.com/servers/wls700/dtd/weblogic700-web-jar.dtd">
    <weblogic-web-app>
       <description>WebLogic Descriptor</description>
       <jsp-descriptor>
          <jsp-param>
             <param-name>pageCheckSeconds</param-name>
             <param-value>1</param-value>
           </jsp-param>
          <jsp-param>
             <param-name>debug</param-name>
             <param-value>true</param-value>
          </jsp-param>
       </jsp-descriptor>
    </weblogic-web-app> 
    
Viewing 1 post (of 1 total)
Reply To: [WebLogic] How do I change the resource refresh interval?

You must be logged in to post in the forum log in