博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts2 DMI
阅读量:6340 次
发布时间:2019-06-22

本文共 1067 字,大约阅读时间需要 3 分钟。

在使用DMI(动态方法调用)的时候要注意struts.xml配置时要把

不然会出现错误

 

完整示例代码

struts.xml

/MyPath.jsp
/MyPath.jsp
/hello.jsp
/index.jsp

IndexAction3

package com.pengli.structs2.actionstudy;import com.opensymphony.xwork2.ActionSupport;public class IndexAction3  extends ActionSupport{    @Override    public String execute() throws Exception {        // TODO Auto-generated method stub        return "a";    }        public String add()    {        return "add";    }        public String edit()    {        return "edit";    }}

web.xml

struts2
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
struts2
/*

 

 

 

转载地址:http://cihoa.baihongyu.com/

你可能感兴趣的文章
顺序结构程序代码之间的相互关系
查看>>
python excel用例123
查看>>
布隆过滤器 - URL去重,字符串去重
查看>>
chrome插件开发入门
查看>>
Azure手把手系列 3:把IT的钱花在刀刃上
查看>>
项目中copy List 数据,解决修改值后改变原值问题(SerialKiller)
查看>>
BAT及各大互联网公司2014前端笔试面试题:JavaScript篇
查看>>
续集一:我是YYF,这是我的故事
查看>>
SpringBoot文件上传异常之提示The temporary upload location xxx is not valid
查看>>
Clojure API之数组操作
查看>>
Windows下安装jmeter图文教程
查看>>
Centos6下使用SSH密钥认证登录配置
查看>>
H-WSNMS 基于网关的WSN管理架构设计
查看>>
JVM内部原理
查看>>
中国cdn市场方面有哪些特点
查看>>
dwz uploadify在firefox下报http 302
查看>>
Java内存分析
查看>>
spring vmc3.1.1 上,通过AnnotationMethodHandlerAdap...
查看>>
web服务器的php安全设置
查看>>
C|C++中的静态全局变量,静态局部变量,全局变量,局部变量的区别
查看>>