如果在struts.xml文件中<action>没有method属性,例如:<action name="helloWorld" class="action.HelloWorld">,那么在HelloWorld.java中默认必须具有public String execute()方法;
如果具有method属性,可以不用写execute()方法,例如:<action name="helloWorld" class="action.HelloWorld" method="hello">,那么在HelloWorld.java中具有public String hello()方法就可以了;
也可以在HelloWorld.java中写多个方法,然后在action中根据name的不同,选用不同的method。