I'd like to do hot deployment in tomcat, but fails. I use maven tomcat plugin to to deployment. When I invoke "mvn tomcat:redeploy", the war is uploaded to tomcat webapps folder successfully. But it is not unpacked successfully, because the my original webapplication folder is not removed successfully. There's still a oracle jdbc jar exist under WEB-INF/lib. And it can not been delete event when I try to delete it manually. It tells me that there's one process is using it. I guess the jdbc connection is not released.
How can I solve this problem ? Thanks
Jeff Zhang