Re: [appfuse-user] How I got jetty:run to work.

2007-04-16 Thread tibi
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

Re: [appfuse-user] How I got jetty:run to work.

2007-04-16 Thread Matt Raible
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/

Re: [appfuse-user] How I got jetty:run to work.

2007-04-16 Thread tibi
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

Re: [appfuse-user] How I got jetty:run to work.

2007-04-15 Thread upstreamnet
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

Re: [appfuse-user] How I got jetty:run to work.

2007-04-15 Thread upstreamnet
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 -

Re: [appfuse-user] How I got jetty:run to work.

2007-04-15 Thread tibi
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

[appfuse-user] How I got jetty:run to work.

2007-04-14 Thread upstreamnet
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