cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Hybrys server doesn't reflex the changes in any JSP

Former Member
0 Kudos
642

Lately we have problems at the moment of makes changes in any JSP's, the server doesn't reflex the changes, due to this is necesary reestart the hybryssever

How we can resolve this problem?

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member633554
Active Participant
0 Kudos

You have to restart the server. If you want to avoid that put this in the local.properties

 Build.development.mode=true

I think i also needed to add this to tomcat conf/web.xml

     <init-param>
         <param-name>development</param-name>
         <param-value>true</param-value>
     </init-param>
    <init-param>
         <param-name>checkInterval</param-name>
         <param-value>120</param-value>
     </init-param>
     <init-param>
         <param-name>modificationTestInterval</param-name>
         <param-value>0</param-value>
     </init-param>