How to merge multiple modules to one single module, which then we can
use for deployment. So instead of multiple war files you can create
one war file.

The complete scenario is

In my project I've two modules. 1)Student 2)Teacher

These modules are placed in "com.sow.school". So I've Student.gwt.xml
and Teacher.gwt.xml in "com.sow.school"  and the entry classes
Student.java, Teacher.java in "com.sow.school.client".

Using my build file I compile them as

 com.google.gwt.dev.GWTCompiler -out www com.sow.school.Student
 com.google.gwt.dev.GWTCompiler -out www com.sow.school.Teacher

So I define two context files in tomcat student.xml and teacher.xml
and access these as localhost:8080/student/Student.html and localhost:
8080/teacher/Teacher.html.

But I want to create one context say main, so that I can access them
as localhost:8080/main/Student.html and localhost:8080/main/
Teacher.html.

by the way my student.xml and teacher.xml which I placed in tomcat
have this content

student.xml - <Context path="/student" docBase="C:/workspace/www/
com.sow.school.Student"/>

teacher.xml - <Context path="/teacher" docBase="C:/workspace/www/
com.sow.school.Teacher"/>




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to