Пожалуйста, объясните действие в XML-файле Struts 2.0 - PullRequest
0 голосов
/ 02 июля 2010
<action name="userLogin" class="com.cc.ad.web.common.UserLoginAction">
    <result name="error">/user-login.jsp</result>
    <result name="redirect" type="redirect">${retUrl}</result>
    <result name="customerRedirect" type="redirect">${customerRedirect}</result>
    <result name="supplierRedirect" type="redirect">${supplierRedirect}</result>
    <result name="diamondViewRedirect" type="redirect">${diamondViewRedirect}</result>          
    <result name="supplierPopupRedirect" type="redirect">${supplierPopup}</result>
    <result name="customerPopupRedirect" type="redirect">${customerPopup}</result>  
</action>

Выше я показываю одну из многих вещей, написанных в моем XML-файле Struts. Здесь ничего не определено в атрибутах метода, поэтому я не понимаю, какой метод класса UserLoginAction вызывается при вызове этого действия.

1 Ответ

0 голосов
/ 02 июля 2010

Если имя метода не указано в конфигурации действия, Struts будет искать метод с именем execute по умолчанию.

Struts 2.0 Конфигурация действий Doc

...