How will the struts know which action class to call when
you submit a form?
Answers were Sorted based on User's Feedback
Answer / lovish gupta
It will be written in a file calles struts-config.xml...
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / chetanya
struts-config.xml in this file.
under the tag <type> absolute path of Action class
under the tag <name> name of the action form class
Both of this will be called when the desired action
mentioned under the <path> tag will be called and
struts-config.xml will call action class mentioned in the
<type> tag and also populate the fields of form class
mentioned under <name> tag.
Thanks,
Chetanya
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / shrinath rodage
when we submited button that time the request first goes to
the struts-config.xml file and then search the corresponding
action class and it will perform the action and it will
respond to the browser...
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sridhar
in web.xml .
we have to use the Class information in the configuration file.
class name:org.apache.struts.action.ActionServlet Class
| Is This Answer Correct ? | 0 Yes | 2 No |
Explain phantom read?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
Why won’t the jvm terminate when I close all the application windows?
What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
life cycle of an applet?
Difference between swing and awt?
How JNDI is used in JMS ?
whats is mean by tiles in struts
diff between jsp include directive and jsp action include?
what is the proxy pattern?
Explain about local interfaces.
difference between sql exception class and sql warning class