Struts struts-config.xml action-mapping explained

大兔子大兔子 提交于 2019-12-03 17:04:40

The relationship is made by the name attribute in the action config. So if you use name="testForm" then form bean with the name testForm will be injected to the action's execute method.

Your request might be handled if the relative url match the path value in action config and you have mapped the action servlet to *.do in servlet mapping pattern.

The type attribute of the <form-bean> is used to enter FQCN of the bean class that would probably extend the ActionForm. It's needed by Struts to be able to instantiate a bean when required.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!