jsp - Is it really the case that Eclipse prevents packaging of an entire web directory if any file in that directory has warnings? -


i had collection of jsp files in subfolder of tomcat 7 app created using eclipse wtp 3.3.0.

i including these using standard <jsp:include page="foo/bar/baz.jsp" /> directives.

this worked until 1 of files ended dodgy bit of html upset eclipse's html validator:

<div class="clear" /> 

instead of:

<div class="clear"></div> 

this caused both foo , bar have warning symbols in project explorer view and, more worryingly, cause tomcat no longer able find baz.jsp or other files inside bar.

properly closing div off fixed problem , allowed tomcat find files during include execution.

i find hard believe eclipse refuses package folders warnings associated, seems case. it? , there way disable behaviour (preferably without disabling warnings themselves)?


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -