deleting is correct but you need to rember that ;)
tibi
Matt Raible wrote:
On 4/16/07, tibi <[EMAIL PROTECTED]> wrote:
and one ting to notice is that non java files don't get compiled and
will not be added to WEB-INF/classes.
like propertie files and the language files.
This shouldn't be a p
On 4/16/07, tibi <[EMAIL PROTECTED]> wrote:
and one ting to notice is that non java files don't get compiled and
will not be added to WEB-INF/classes.
like propertie files and the language files.
This shouldn't be a problem if you delete them from WEB-INF/classes.
Maven will put them in target/
and one ting to notice is that non java files don't get compiled and
will not be added to WEB-INF/classes.
like propertie files and the language files.
take care of that!
tibi
upstreamnet wrote:
One final observation here:
in order to have your java code changes picked up and loaded by jett
One final observation here:
in order to have your java code changes picked up and loaded by jetty as you
save you not only have to do this >>>
rm -r src/main/webapp/WEB-INF/lib
You also need to do this >>
rm -r src/main/webapp/WEB-INF/classes/com/YOURCOMPANY
This assumes th
Thanks for your response, Tibi. I tried the steps that you suggested with
the .jsf basic project archetype and it worked fine (except that there is
no struts.xml to delete, of course).
Your way is better since it does not involve monkeying with the eclipse
build path...
regards
/chris
-
have you looked at these:
http://appfuse.org/display/APF/Demos+and+Videos
i don't do jsf but struts and then i need to remove the lib dir in
webinf classes and the struts.xml (which i will not have) too:
this is what i did for my struts project (m3 version):
look on:
http://appfuse.org/display
Hello,
I finally got my appfuse project (jsf basic archetype) working with
jetty:run such that both java code and jsp changes are (semi-)instantly
picked
up by jetty. I did not find anything in the way of a step by step tutorial
on how to do this.
Since getting this very useful result too