on 2018 May 22 7:43 PM
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?
Request clarification before answering.
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>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.