JAVA知识点必看
forEach遍历map集合
由xml解析出类名和方法名执行该方法:
HelloAction类:
public class HelloAction { public String hello(){ System.out.println("ms future"); return "success"; } }
对应的xml文件:
<package name="hello" namespace="/hello" extends="struts-default" > <action name="HelloAction" class="cn.itheima.a_hello.HelloAction" method="hello" > <result name="success" type="dispatcher" >/hello.jsp</result> </action> </package>
执行过程:
public static void main(String[] args) throws Exception { Class clazz = Class.forName("class com.future.ms.HelloAction"); HelloAction helloAction = (HelloAction) clazz.newInstance(); Method method = clazz.getMethod("hello", null); method.invoke(helloAction, null); }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步