what is the difference between the controller command and task command.
Generally controller command is the main command which we used to call
from the JSP to process the request, But task command is used to perform some
specific task like for inventory check, price check, these are handled through
task commands, so task command are command which perform specific task for
controller command. DIFFERENCE - By the above statement we can visualize that
Controller command is required to be configure in the struts file, but task
command is not required to be configured in struts, rest everything is same in
both.
Comments