<servlet-mapping>
    <servlet-name>action</servlet-name>
    <!--<url-pattern>*.do</url-pattern>-->
    <url-pattern>/</url-pattern>
</servlet-mapping>

I am doing like this to obtain my url seo friendly. Now i am facing a problem is that to my one of my controller i am passing parameter : test1.in as

http://www.myweb.com/manage/test1.in

So in manage action servlet i get the parameter as test1 but not test1.in, can somebody tell me how to do this?

link|improve this question

60% accept rate
Got solution to this problem using request object – JMoh Feb 17 at 4:41
feedback

1 Answer

up vote 0 down vote accepted

Friends, finally i got solution to this problem is : using request object

String requestUrlTemp = new String(request.getRequestURL());
String requestUrl = "";   
requestUrl= URLDecoder.decode(requestUrlTemp, "UTF-8" );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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