Adding gwt project to existing java servlet 3 project
Posted
by
Michael
on Stack Overflow
See other posts from Stack Overflow
or by Michael
Published on 2012-09-11T06:46:35Z
Indexed on
2012/09/19
15:39 UTC
Read the original article
Hit count: 261
I have a standalone gwt project with RPC built with Maven. I also have java servlet 3.0 project. Both the servlet and gwt projects have war packaging but I want to have only one war file so I changed the packaging of the gwt project to jar
and included it in my servlet project.
Now I have a problem understanding how to wire everything together.
Do I need to migrate gwt project's web.xml
into the main project web.xml
file ? How do I redirect to my gwt project entry index.html
?
Thanks.
© Stack Overflow or respective owner