Struts2 配置文件使用通配符
程序员文章站
2022-04-23 10:45:44
...
形式一:调用相同Action中的不同方法
<action name="*Action" class="Jcuckoo.LoginRegistAction" method="{1}">
<result name="input">/login.jsp</result>
<result name="error">/error.jsp</result>
<result name="success">/welcome.jsp</result>
</action>
其中表达式{1}的值--->name属性值中第一个*的值。
如果用户请求的URL为loginAction.action,则调用Jcuckoo.LoginRegistAction中的login方法;
如果用户请求的URL为registerAction.action,则调用Jcuckoo.LoginRegistAction中的register方法;
形式二:通过匹配,调用不同的Action的execute方法
<action name="*Action" class="Jcuckoo.{1}Action">
<result name="input">/login.jsp</result>
<result name="error">/error.jsp</result>
<result name="success">/welcome.jsp</result>
</action>
上面没有出现method属性,故默认调用对应的execute方法
如果用户请求的URL为LoginAction.action,则调用Jcuckoo.LoginAction中的execute方法;
如果用户请求的URL为RegisterAction.action,则调用Jcuckoo.RegisterAction中的execute方法;
形式三:动态结果
<action name="crud_*" class="Jcuckoo.CrudAction" method="{1}">
<result name="input">/input.jsp</result>
<result>/{1}.jsp</result>
</action>
当处理结果是success时,
如果crud_create.action,则会执行Jcuckoo.CrudAction中的create方法,并且跳转到/create.jsp;
如果crud_delete.action,则会执行Jcuckoo.CrudAction中的delete方法,并且跳转到/delete.jsp;
上一篇: 实例详解vue组件父子间通信之聊天室
下一篇: 求php加密解密算法的使用
推荐阅读
-
MyBatis 如何写配置文件和简单使用
-
SQL Server中通配符的使用示例
-
ASP.NET core Web中使用appsettings.json配置文件的方法
-
Python使用ConfigParser模块操作配置文件的方法
-
函数中使用require_once问题深入探讨 优雅的配置文件定义方法推荐
-
weflow如何使用?weflow的使用及配置文件教程
-
struts2配置文件详解(struts2和springMVC的区别)
-
通配符ssl证书怎么使用(通配符ssl证书使用方法)
-
struts2配置文件详解(struts2和springMVC的区别)
-
使用maven+eclipse搭建struts2开发环境