show/hide this revision's text 2 added example with some dynamicism

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.

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.

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.

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.

So, if normally you would do

return mapping.findForward("success");

You can do something like this

ActionForward defaultMapping = mapping.findForward("success");
ActionForward roleMapping = mapping.findForward(user.getRole() + "_success");
if (roleMapping != null) {
  return roleMapping ;
} else {
  return defaultMapping;
}

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:

<action path="/home" class="HomeAction">
  <forward name="success" path="home.jsp"/>
</action>
<action path="/viewOrder" class="ViewOrderAction">
  <forward name="customer_success" path="customer_order.jsp"/>
  <forward name="employee_success" path="employee_order.jsp"/>
</action>

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.

show/hide this revision's text 1

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.

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.

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.