I am trying to inherit a mapping, according to the PrettyFaces reference guide it should work like this: http://ocpsoft.com/docs/prettyfaces/snapshot/en-US/html_single/#config.mapping.parents

I tried with the 3.3.2 version and later with 3.3.2-SNAPSHOT but without success. Everything works fine without inheritance but I do not like the duplication.

Here is some of my code:

  <url-mapping id="management">
    <pattern value="/management/" />
    <view-id value="/management.face" />
  </url-mapping>

  <url-mapping parentId="management" id="managementUsers">
    <pattern value="/users/" />
    <view-id value="/management-users.face" />
  </url-mapping>
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

you have a few choices. Two of which are:

  1. Without a leading slash on the child mapping

    <url-mapping id="management">
    <pattern value="/management/" />
    <view-id value="/management.face" />
    </url-mapping>

    <url-mapping parentId="management" id="managementUsers">
    <pattern value="users/" />
    <view-id value="/management-users.face" />
    </url-mapping>

  2. Without a slash on the tail of the parent mapping

    <url-mapping id="management">
    <pattern value="/management" />
    <view-id value="/management.face" />
    </url-mapping>

    <url-mapping parentId="management" id="managementUsers">
    <pattern value="/users/" />
    <view-id value="/management-users.face" />
    </url-mapping>

I hope this helps.

~Lincoln

link|improve this answer
Thank you, it works.Please update the documentation, the store/category example which I took as a reference is not correct. – Christophe Roussy Dec 9 '11 at 9:31
Sure will do. Please accept the answer :) – Lincoln Dec 15 '11 at 20:45
Should be accepted now, it was my first question... good work on the PrettyFaces and support by the way. – Christophe Roussy Dec 28 '11 at 10:10
Hehe. Thank you. I was mostly giving you a hard time/play on words for the way you said, "Please update the documentation" :) – Lincoln Jan 8 at 1:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.