首页上一页 1 下一页尾页 1 条记录 1/1页
struts2配置文件中action为indexAction,而类定义文件类名定义为IndexAction,二者如何对应的?
发表在JavaWeb图书答疑
2016-11-14
是否精华
是
否
版块置顶:
是
否
《实战突击:Java.Web项目整合开发》
第5章:天下淘网络商城 源代码
<action name="index1" class="indexAction">
<result>/WEB-INF/pages/index.jsp</result>
</action>
@Scope("prototype")
@Controller("indexAction")
public class IndexAction extends BaseAction {
private static final long serialVersionUID = 1L;
@Override
public String execute() throws Exception {
第5章:天下淘网络商城 源代码
<action name="index1" class="indexAction">
<result>/WEB-INF/pages/index.jsp</result>
</action>
@Scope("prototype")
@Controller("indexAction")
public class IndexAction extends BaseAction {
private static final long serialVersionUID = 1L;
@Override
public String execute() throws Exception {