Make Struts show different JSPs for different roles - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:47:46Z http://stackoverflow.com/feeds/question/839547 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/839547/make-struts-show-different-jsps-for-different-roles 0 Make Struts show different JSPs for different roles Plutor 2009-05-08T12:23:52Z 2009-05-08T16:32:08Z <p>We have a Struts 2 web application that's used by pretty much every employee to manage and configure jobs for our server farm. We're working on a plan to make a dashboard for customers, so they can see their own jobs, and a very simple display of its status ("in process", "ready for proofing", "finished", etc). All of the pages the customers can see will have much less information than the employees' views, and there will be no way to edit or change anything. But in the end, they're essentially two separate views of the same information: one very simple, one more complex and controllable.</p> <p>The naive way to do this, is to have if/elses in every single jsp:</p> <pre><code>&lt;s:if test="user.role == 'customer'"&gt; &lt;!-- TODO - Display simple customer view --&gt; &lt;/s:if&gt; &lt;s:else&gt; &lt;!-- TODO - Display complex employee view --&gt; &lt;/s:else&gt; </code></pre> <p>Is there a simpler way to do this? Can I create two separate directories of jsps, one named "customer" and one named "employee" (or default or something) and then have Struts key off of a property in my action to decide which directory to check?</p> <p>Or is there another way that I can do this?</p> http://stackoverflow.com/questions/839547/make-struts-show-different-jsps-for-different-roles/839601#839601 1 Answer by Rich Kroll for Make Struts show different JSPs for different roles Rich Kroll 2009-05-08T12:36:12Z 2009-05-08T12:36:12Z <p>I would suggest managing this inside your controller. Add a new view for the customer, and check the user's role in your controller and display the appropriate view. This will leave your existing view's untouched, and adds the ability to have truly custom views for your customers.</p> http://stackoverflow.com/questions/839547/make-struts-show-different-jsps-for-different-roles/839724#839724 1 Answer by Mr. Shiny and New for Make Struts show different JSPs for different roles Mr. Shiny and New 2009-05-08T13:11:31Z 2009-05-08T16:32:08Z <p>It's not exactly clear from the question if the two views are completely different, or if the customers have something extra, or if the employees have something extra. If one role has something extra, just put the common parts in one file and the uncommon parts in their own files and use includes or tiles (or something similar) to combine JSPs to make a page.</p> <p>If the two views are completely different, they should be separate JSPs, in which case the action can forward to the appropriate view based on the role, as suggested by Rich Kroll. </p> <p>As for your comment asking about duplicating the result definitions, when you have two separate mutually-exclusive features, you need two code paths. The best you can do is factor out the commonality into shared code files.</p> <p>One way you can simplify your action code, if this pattern is something you do a lot, is to pick the ActionForward that best matches your desired forward name.</p> <p>So, if normally you would do</p> <pre><code>return mapping.findForward("success"); </code></pre> <p>You can do something like this</p> <pre><code>ActionForward defaultMapping = mapping.findForward("success"); ActionForward roleMapping = mapping.findForward(user.getRole() + "_success"); if (roleMapping != null) { return roleMapping ; } else { return defaultMapping; } </code></pre> <p>Put that in a method in your base class and then your actions don't need to know what view they are going to. Then your struts-config can be something like this:</p> <pre><code>&lt;action path="/home" class="HomeAction"&gt; &lt;forward name="success" path="home.jsp"/&gt; &lt;/action&gt; &lt;action path="/viewOrder" class="ViewOrderAction"&gt; &lt;forward name="customer_success" path="customer_order.jsp"/&gt; &lt;forward name="employee_success" path="employee_order.jsp"/&gt; &lt;/action&gt; </code></pre> <p>In this case you are not dynamically looking up the jsps by name to determine whether or not they exist, but at least you can keep the action code simple.</p>