Creating friendly urls to dynamic resources in struts2 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:44:22Z http://stackoverflow.com/feeds/question/226721 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/226721/creating-friendly-urls-to-dynamic-resources-in-struts2 0 Creating friendly urls to dynamic resources in struts2 Vincent Ramdhanie 2008-10-22T17:08:33Z 2009-05-19T16:35:11Z <p>I have a struts2 application with a single page that may show one of a number of values stored in a database. The application is for a school with many departments and each department has many programs. The department page is accessed using a url like this</p> <pre><code>department.action?id=2 </code></pre> <p>and the DepartmentAction will load the Department with id = 2 for display. All this is fine if the user is just browsing around the site but it gets uncomfortable if I want to provide a link to say the Engineering department in the newspapers. The link will have to be www.myschooldomain.com/department.action?id=2. I see a number of problems with this.</p> <p>First, it is not user friendly. Second, it is prone to be broken because the departments are dynamically maintained and the id for a department could change without warning making the link unstable.</p> <p>I would prefer to print a url like this: www.myschooldomain.com/department/engineering and have that somehow go to department.action?id=2.</p> <p>My thoughts so far: create an action that will parse the url for the department name at the end then look it up by name. Maybe I could add a friendlyurl field to the database for each department.</p> <p>But the question is: Is there a better way to do this in struts2?</p> <p>Thanks.</p> <p><strong>Update (May 2009):</strong> I just happened to stumble back over this question and thought that I would say what I did to solve it. </p> <p>I created a new package in the struts.xml called departments. In this package there is only one action mapped to *. So it catches all requests to mydomain.com/departments/anything.html.</p> <p>In the action class I simply parse the url and look for the part between departments/ and .html and that is the name of the department so I can do a lookup in the database for it. This has been working fine for almost 5 months now and I have implemented it for other areas of the site.</p> http://stackoverflow.com/questions/226721/creating-friendly-urls-to-dynamic-resources-in-struts2/226827#226827 1 Answer by sylvarking for Creating friendly urls to dynamic resources in struts2 sylvarking 2008-10-22T17:47:55Z 2008-10-22T17:47:55Z <p>This is normally done by mapping a servlet to, in your case '/department', and then using the <a href="http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpServletRequest.html#getPathInfo()" rel="nofollow">path</a> information (e.g., '/engineering') within the servlet to determine the ID. </p> <p>Since the Struts2 dispatcher doesn't implement this behavior, it might be simplest to write your own servlet. This servlet would be configured with a map of valid "friendly" names to the unfriendly numeric identifiers. This could be an actual <code>Map</code> or it could be done with a database finder method. </p> <p>The result of <code>getPathInfo()</code> would be used to look up the ID, and the request would be <a href="http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/RequestDispatcher.html#forward(javax.servlet.ServletRequest,%20javax.servlet.ServletResponse)" rel="nofollow">forwarded</a> to the department.action. Handle the <code>null</code> case too, which means the user is trying to browse the <code>/departments/</code> directory.</p> http://stackoverflow.com/questions/226721/creating-friendly-urls-to-dynamic-resources-in-struts2/729846#729846 1 Answer by The Feast for Creating friendly urls to dynamic resources in struts2 The Feast 2009-04-08T12:53:53Z 2009-04-08T12:54:07Z <p>You could use the <a href="http://tuckey.org/urlrewrite/" rel="nofollow">URL Rewrite filter</a></p> <p>This avoids the need for any additional servlet or Java code but requires XML descriptors.</p>