Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to have "profile url" functionality in my jsf application, is there any way apart from filters I can achieve this?

For ex: www.website.com/dan.thomas should take me to the Dan Thomas`s page

I can not use filter to achieve this.

share|improve this question
Why no filter ?? – Jigar Joshi Jan 19 '11 at 16:51

1 Answer

up vote 1 down vote accepted

I can not use filter to achieve this.

Then it stops here. There are no other ways. You might consider to reformulate the question to solve the concrete problem why you cannot use filters for this, at least, if it's actually a programming problem.

share|improve this answer
"No Filter" because each incoming request has to pass through that extra filter. I was trying to use <url-pattern>/*</url-pattern> to examine each request in the filter with the help of regex, this will add to extra processing and delayed response. If filter is the only way then can you think any other implementation? Thanks – Abhishek Jan 20 '11 at 9:08
It'll likely be the regex which makes it slow, not the filter. That's almost a no-op. – BalusC Jan 20 '11 at 11:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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