Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

One Issue that comes up from time to time, is when we build the workflow applications, they 'hot deploy' but it looks like the way we are 'hot deploying' doesn't always clear out the 'compiled jsps' so when new ones get deployed, the user sees the old one.

 

In order to make sure that the jsp is in fact changed, look in fisheye for the change, for instance: http://fisheye.uits.uconn.edu:8060/changelog/kuali?cs=4739

Next log into dev.krapps and go to /usr/share/tomcat6/webapps/FACCON

find the JSP:

find . -name "*.jsp"

vi ./WEB-INF/classes/jsp/facConDocHandler.jsp

if the change is in fact there, then the 'compiled jsp' needs to get removed:

stop the app server

cd /usr/share/tomcat6/work/Catalina/localhost

rm -rf FACCON

now start the app server

 

  • No labels