There is a simple (tricky) way to achieve this:
Make a Main class Your entry point.
<module rename-to='gwt'><br/>
<inherits name='com.google.gwt.user.User'/><br/>
<entry-point class='com.example.client.Main'/><br/>
<source path='client'/><br/>
<source path='shared'/><br/>
</module>;<br/>
Create this Main.java to work like a dispatcher:
package com.example.client;
import com.google.gwt.core.client.EntryPoint;<br/>
import com.google.gwt.user.client.Window;<br/>
import com.google.gwt.user.client.ui.RootPanel;<br/>
public class Main implements EntryPoint {
public void onModuleLoad() {
String url = Window.Location.getHref();
if ( url.indexOf("?install")>-1 ) {
Install install = Install.getInstance();
RootPanel.get().add(install);
else if ( url.indexOf("?admin")>-1 ) {
Admin admin = Admin.getInstance();
RootPanel.get().add(admin);
} else {
Application app = Application.getInstance();
RootPanel.get().add(app);
}
}
}
Now the different classes Application, Admin and Install
work like seperate units.
Here is for example a simple Install:
package comexample.client;
import com.google.gwt.user.client.ui.FlowPanel;<br/>
import com.google.gwt.user.client.ui.HTML;<br/>
public class Install extends FlowPanel {<br/>
/** Singleton stuff - to access Main from all subclasses! */ <br/>
private static Install singelton;<br/>
public static Install getInstance() {<br/>
if (singelton == null) {singelton = new Install();}<br/>
return singelton;<br/>
}<br/>
/** Constructor - called by Main.onModuleLoad() */<br/>
private Install() {<br/>
this.add(new HTML("<h1>Do whatever You have to do!</h1>"));<br/>
}<br/>
}<br/>
You don't need the Singleton stuff (getInstance), but
it is very handy in big applications.
Now in the /war-directory create directories named
install and admin and in every of them create an
HTML page like this:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; URL=/index.html?install">
</head>
<body></body>
</html>
So when the user directs his Brower to
http://www.example.com/install
he will be redirected to
http://www.example.com/index?install
and index.html is bound to Main.java which
will dispatch the request and load Install.java