Matt RaibleMatt Raible is a Web Developer and Java Champion. Connect with him on LinkedIn.

The Angular Mini-Book The Angular Mini-Book is a guide to getting started with Angular. You'll learn how to develop a bare-bones application, test it, and deploy it. Then you'll move on to adding Bootstrap, Angular Material, continuous integration, and authentication.

Spring Boot is a popular framework for building REST APIs. You'll learn how to integrate Angular with Spring Boot and use security best practices like HTTPS and a content security policy.

For book updates, follow @angular_book on Twitter.

The JHipster Mini-Book The JHipster Mini-Book is a guide to getting started with hip technologies today: Angular, Bootstrap, and Spring Boot. All of these frameworks are wrapped up in an easy-to-use project called JHipster.

This book shows you how to build an app with JHipster, and guides you through the plethora of tools, techniques and options you can use. Furthermore, it explains the UI and API building blocks so you understand the underpinnings of your great application.

For book updates, follow @jhipster-book on Twitter.

10+ YEARS


Over 10 years ago, I wrote my first blog post. Since then, I've authored books, had kids, traveled the world, found Trish and blogged about it all.

Enhancing your GWT Application with the UrlRewriteFilter

Last week, I spent some time trying to change the location of my cache/nocache HTML files in my GWT project. I started the project with the gwt-maven-plugin's archetype. The message I posted to the gwt-maven Google Group is below.

Rather than having my application's HTML file in src/main/java/com/mycompany/Application.html, I'd like to move it to src/main/webapp/index.html. I tried copying the HTML and adding the following to my index.html, but no dice:

<meta name="gwt:module" content="com.mycompany.Application"/>

Is this possible with the gwt-maven-plugin? I'd like to have my main HTML and CSS at the root of my application.

The good news is I figured out a solution using the UrlRewriteFilter that 1) allows hosted mode to work as usual and 2) allows your app to be served up from the root URL (/ instead of /com.company.Module/Application.html). Here's the urlrewrite.xml that makes it all possible.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCENGINE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 3.0//EN"
        "http://tuckey.org/res/dtds/urlrewrite3.0.dtd">

<urlrewrite>
    <rule>
        <from>^/$</from>
        <to type="forward" last="true">/com.mycompany.app.Application/Application.html</to>
    </rule>
    <rule>
        <from>/index.html</from>
        <to type="forward" last="true">/com.mycompany.app.Application/Application.html</to>
    </rule>
    <-- This last rule is necessary for JS and CSS files -->
    <rule>
        <from>^/(.*)\.(.*)$</from>
        <to type="forward">/com.mycompany.app.Application/$1.$2</to>
    </rule>
</urlrewrite>

If you're using the gwt-maven plugin, this file goes in src/main/webapp/WEB-INF. In addition, you'll need to add the following to your web.xml.

    <filter>
        <filter-name>rewriteFilter</filter-name>
        <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>rewriteFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

Finally, add the UrlRewriteFilter dependency in your pom.xml:

    <dependency>
        <groupId>org.tuckey</groupId>
        <artifactId>urlrewritefilter</artifactId>
        <version>3.1.0</version>
    </dependency>

Please let me know if you have any questions.

Update: Jeff posted an alternative configuration that allows you to eliminate the last rule in urlrewrite.xml, as well as use the beloved mvn jetty:run command. To use cleaner WAR packaging and the Jetty plugin, add the following to your pom.xml:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <configuration>
        <webappDirectory>
            ${project.build.directory}/${project.build.finalName}/com.mycompany.app.Application
        </webappDirectory>
    </configuration>
</plugin>
<plugin>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>maven-jetty-plugin</artifactId>
    <version>6.1.14</version>
    <configuration>
        <webAppConfig>
            <contextPath>/</contextPath>
            <baseResource implementation="org.mortbay.resource.ResourceCollection">
                <resourcesAsCSV>
                    ${basedir}/src/main/webapp,
                    ${project.build.directory}/${project.build.finalName}/com.mycompany.app.Application
                </resourcesAsCSV>
            </baseResource>
        </webAppConfig>
        <scanIntervalSeconds>3</scanIntervalSeconds>
        <scanTargets>
            <scanTarget>${basedir}/src/main/resources</scanTarget>
            <scanTarget>${basedir}/src/main/webapp/WEB-INF</scanTarget>
            <scanTarget>
                ${project.build.directory}/${project.build.finalName}/com.mycompany.app.Application
            </scanTarget>
        </scanTargets>
    </configuration>
</plugin>

Then you can trim your urlrewrite.xml down to:

<urlrewrite>
    <rule>
        <from>^/$</from>
        <to type="forward" last="true">/Application.html</to>
    </rule>
    <rule>
        <from>/index.html</from>
        <to type="forward" last="true">/Application.html</to>
    </rule>
</urlrewrite>

Of course, you could also change the welcome-file in your web.xml or use index.html and the <meta http-equiv="REFRESH"> option. Personally, I have so much affection for the UrlRewriteFilter that I like having it in my project. I'm sure I'll need it someday.

Thanks Jeff!

Posted in Java at Feb 23 2009, 05:02:29 PM MST 13 Comments
Comments:

Hi Matt, I'm a regular reader of your website. Great work!

Won't the rule "/$" match anything with a trailing slash in the URL? Is this the behaviour you're after? E

Posted by Elwyn Malethan on February 24, 2009 at 03:52 AM MST #

Hi Matt. No need to do the URL rewrite. Add the maven-war-plugin to your pom and set the <webappDirectory> to "${project.build.directory}/${project.build.finalname}/your.package.name.and.app". Run your hosted mode in "noserver" and you can run with the jetty plugin. This gets rid of the nasty package name in the URL. If you want an entire pom that works with the gwt maven plugin, jetty maven plugin, etc, ping me on IM and I will be happy to send you the setup.

Posted by 209.181.65.238 on February 24, 2009 at 09:55 AM MST #

Whoops..last post was from me.

Posted by Jeff Genender on February 24, 2009 at 09:55 AM MST #

@Elwyn - you are correct. The manual suggests using <from>^/$</from>. I tried that and it works. I'll update the post.

@Jeff - I'd definitely be interested in that configuration. Can you post it here (or at least a link to a sample)? Might be easiest to reply to my thread on the gwt-maven mailing list.

Posted by Matt Raible on February 24, 2009 at 10:06 AM MST #

Ok... I answered it in the thread. Its in moderation in their groups, so hopefully you will see it shortly.

Posted by Jeff Genender on February 24, 2009 at 11:00 AM MST #

I've been using UrlRewrite to fake REST style urls with my Spring MVC app. It's a great product.

Posted by Clay Mitchell on March 04, 2009 at 01:02 PM MST #

I am also trying for cleaner url in my gwt application. However, I am not sure about what should I write <to type="forward" last="true">/com.mycompany.app.Application/Application.html</to> Can you please suggest

Posted by Asha on March 25, 2009 at 02:39 AM MDT #

In above scenario, how do u access ur application? what url r u using?

Posted by Asha on March 25, 2009 at 03:47 AM MDT #

@Asha - If you've configured UrlRewriteFilter and the war plugin as recommended, you should be able to deploy your WAR to a local Tomcat instance and access it at http://localhost:8080/yourappname.

Posted by Matt Raible on March 25, 2009 at 08:45 AM MDT #

Thanks Matt. I would like to explain in detail. I have a gwt apps, which I am currently accessing as http://localhost:8080/myapp/myapp.html. I want to remove this myapp/myapp.html part from url and replace with some myportal. How would I achieve this using urlrewritefilter. I added rule for this as

    <rule>
        <from>^/myportal/$</from>
        <to type="forward">/myapp/myapp.html</to>
    </rule>

But this does not work. Please suggest.

Posted by Asha on March 25, 2009 at 10:32 PM MDT #

@Asha: the <from> is the url that the user is requesting.

Turn on logging (see http://tuckey.org/urlrewrite/manual/2.6/) and you'll see the webapp name doesn't get passed into the pattern. You want something like <from>/myapp.html</from>.

Posted by Matthew McEachen on July 22, 2009 at 10:42 PM MDT #

Thanks for the tutorial!

In my case, it worked only when I put / followed by the HTML.

<rule>
    <from>^/$</from>
    <to>/Home.html</to>
</rule>

<rule>
    <from>^/([a-z]+)$</from>
    <to>/Home.html?locale=$1</to>
</rule>

Posted by Rodrigo Marini on November 09, 2011 at 07:35 AM MST #

Hey Matt!

I saw your article here on Rewriting and GWT, thought you might be interested in this...

https://github.com/ocpsoft/rewrite/tree/master/integration-gwt

...an extension to http://ocpsoft.org/rewrite/

Worth mentioning? :) I think it simplifies this example a good deal (particularly if running in a Servlet 3.0 environment!

~Lincoln

Posted by Lincoln Baxter, III on April 11, 2012 at 06:59 AM MDT #

Post a Comment:
  • HTML Syntax: Allowed