For client side you can use Window.Location
For example:
public static String getUrlString(String path) {
UrlBuilder urlBuilder = new UrlBuilder();
urlBuilder.setHost(Window.Location.getHost());
urlBuilder.setPath(path);
String port = Window.Location.getPort();
if (!port.isEmpty())
urlBuilder.setPort(Integer.parseInt(port));
return urlBuilder.buildString();
}
Another approach is to use GWT Dictonary. Here you include a snippet of JavaScript in your host HTML page to set the value:
<script type="text/javascript" language="javascript">
var location = { baseUrl: "http://localhost:8080/myapp" };
</script>
Then load the value into the client side with GWT Dictionary:
Dictionary theme = Dictionary.getDictionary("location");
String baseUrl = theme.get("baseUrl");
To use this you would have to change the HTML host page for your local and production instances.