I think this is where the problem is. The controller is getting a "GET" request without any parameters & is unable to resolve a method from the method resolver to execute the action. What you could do is in your bean definition add a default method as below & let it handle all the "GET" requests similar to the showForm in SimpleFormController.
and in your controllerCode:<bean id="paramResolver"
class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
<property name="defaultMethodName" value="showForm"/>
<property name="methodParamNames">
<list>
<value>addAccount</value>
<value>updateAccount</value>
<value>disableAccount</value>
</list>
</property>
</bean>
Code:public ModelAndView showForm(HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse) {
return new ModelAndView("pageYouWantToShowOnInitialPageDisplay");
}

