I have a project created as follows:
/parent /core /src/main/ /resources/META-INF/ web-fragment.xml /resources/jsp/ fragment.jsp /java/ FragmentTest.java /web /src/main/ /webapp/ /WEB-INF/web.xml /jsps/ parent.jsp /java/ ParentTest.java
The core is compiled into .jar inside .war.
However, when deploying this to Tomcat with debugging enabled, I can edit parent.jsp and it will be hot, but if I update the .jsp fragment, then it will not, and I will have to rebuild / repost / etc.
However, any changes to .java in any project will be hot-rolled successfully.
Does anyone know of any configurations, etc., that might be missing to make web fragment JSP applications work with hot deployment?
Thanks!
source share