这是 struts-xml 的:
          <package name="statement" extends="struts-default" namespace="/statement">
<action name="exam*" class="Exam{1}Action" method="{1}">
<result name="success">/report.jsp</result>
<result name="input">/examReport.jsp</result>
</action>
 </package>假如我页面中有  action="examSearch"  而我 ExamSearchAction 中 有:public String search()throws Exception {

}我想问下:配置文件中 *应该是Search ,是大写的S  ,我能通过method 来调用其中 search() 方法吗?(此处是小写的s)