3

Our application is JSF , hibernate & Spring. Currently the url is in following format http://www.skill-guru.com/skill/login/testDetails.faces?testId=62&testName=PMP-Certification-practice-test

We want a clean url like http://www.skill-guru.com/urltitle?some parameter

One of the ways we could do this is through integration with Spring webflow with JSF.

Any other suggestions ?

We are trying Spring webflow 1.0 with JSF 2.0 but that does not seem to work.

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
vsingh
  • 6,365
  • 3
  • 53
  • 57

1 Answers1

6

PrettyFaces provides beautiful URLs for JSF applications.

You can always use the UrlRewriteFilter

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140
  • That seems to be a very good solution. Thanks Bozho. I love stackoverflow. – vsingh May 07 '10 at 14:06
  • An update to what we were doing. We are using pretty faces to get Bookmark-able URl's and they are awesome. Thanks to Lincoln for creating the utility. JSF 2.0 would not have solved our problem completely. In case you are interested , have a look at he URL's in Skill-Guru (http://www.skill-guru.com) – vsingh May 18 '10 at 14:00
  • If you are not using JSF, UrlRewriteFilter is the way to go – vsingh Oct 26 '12 at 19:29