In trying to profile my grails application I stumbled upon a video that discusses how to use Spring Insight to really get into what is taking the time to deliver a page.
<tomcat-users>
<role rolename="manager"/>
<user username="admin" password="" roles="manager"/>
The first issue I ran into is I could not get Maven to deploy my grails app into the running tomcat. The default developer tc server has not defined users. I modified it to:
<role rolename="manager"/>
<user username="admin" password="" roles="manager"/>
</tomcat-users>
That was not quite enough. I ultimately ended up using the gui manager to deploy the war. If I get it solved I will post it up.
Recent Comments