これが私のものstruts.xml
です:
<package name="ajax" extends="json-default" >
<action name="loadcity" method="loadcity" class="roseindia.action.user.RegisterUser" >
<result type="json" />
</action>
</package>
電話するloadcity.action
と、次のエラーが表示されます
No result defined for action roseindia.action.user.RegisterUser and result input
これが私のアクションメソッドです:
public String loadcity()
{
country=request.getParameter("country");
cityList= dao.loadcity(country);
return ActionSupport.SUCCESS;
}