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

I am working on struts1.1 using jdeveloper as IDE. I want to do the url Rewriting for hiding the jsp pages and parameters like for url domain/pageName.jsp/categoryId=1 url should be displayed as domain/pageName/CategoryName

Kindly help me.

share|improve this question

closed as not a real question by GrailsGuy, Luiggi Mendoza, Fraser, valex, Pratik Jan 15 at 6:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can do servlet mapping, here is a good tutorial for it: http://www.hscripts.com/tutorials/jsp/webxml/servlet-mapping-tag.php

You have to define servlet mapping for each of your JSP files

share|improve this answer
What part of I am working on struts1.1 haven't you understood from the question? – Luiggi Mendoza Jan 15 at 4:54
No difference, again should be looking for struts servlet mapping, see here for an example also: stackoverflow.com/questions/9808365/… – Vahid Farahmand Jan 15 at 4:56
If that's the case, you should flag the question as duplicate. – Luiggi Mendoza Jan 15 at 4:57
I tried the same, as mentioned in link hscripts.com/tutorials/jsp/webxml/servlet-mapping-tag.php but it's not redirecting my page. I give the link to some text as <a href="registration.xml">category_name</a></li> and in web.xml as <servlet> <servlet-name>registration</servlet-name> <jsp-file>/blog.jsp</jsp-file> </servlet> <servlet-mapping> <servlet-name>registration</servlet-name> <url-pattern>/registration.xml</url-pattern> </servlet-mapping> – user1900376 Jan 15 at 5:33
Now I am able to redirect my web page, domain/pageName.jsp as domain/pageName but not able to add parameter with url as domain/pageName.jsp/categoryId=1 as domain/pageName/CategoryName, categoryName is dynamically comes from database. – user1900376 Jan 15 at 6:17

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