In web.xml file instead of *.do can i write *.ibm, Specify
with example
Answer Posted / manna
Like all are answered ....my answer is also same YES
but there are some configuration changes
in web.xml
<servlet-mappings>
<servlet-name>testServlet</servlet-name>
<url-pattern>*.ibm</url-pattern>
</servlet-mappings>
in struts-config.xml
in every action mapping, when you want forward request
you need to configure with path name like
testServlet.ibm instead of testServlet.do
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
What do you mean by actionform?
What is the significance of logic tags in Struts?
Explain about struts?
How we can install struts?
Explain struts?
What are the benefits of Struts framework?
What is the struts in java?
What is apache struts used for?
What is the purpose of @before annotation?
What is the purpose of interceptors?
What is the difference between struts1 and struts2?
Does struts include its own unit tests?
What are the steps used to setup dispatch action?
How many action classes can be used in struts application?
Name the different types of actions found in struts.