-
动态方法调用: 动态方法调用是为了解决一个Action对应多个请求的处理,以免Action太多。 三种方式:指定method属性、感叹号方式、通配符方式 1:<action name="addAction" method="add" class="com.imooc.action.HelloWorldAction"> http://localhost:8080/HelloWorld/addAction.action 2:<constant name="struts.enable.DynamicMethodInvocation" value="false"> </constant> <action name="helloworld" class="com.imooc.action.HelloWorldAction"> <result >/result.jsp</result> <result name="add">/add.jsp</result> <result name="update">/update.jsp</result> </action> http://localhost:8080/HelloWorld/helloworld!add.action 3: <action name="*_*" method="{2}" class="com.imooc.action.{1}Action"> <result >/{2}.jsp</result> <result name="add">/{2}.jsp</result> <result name="update">/{2}.jsp</result> </action> http://localhost:8080/HelloWorld/HelloWorld_add.action查看全部
-
Action搜索顺序查看全部
-
struts.xml查看全部
-
访问servletAPI //1.获取ActionContext对象 ActionContext actionContext = ActionContext.getContext(); //2.1获取session的的模拟对象 Map<String, Object> session = actionContext.getSession(); session.put(key, value); //2.2获取Application的的Map对象 Map<String, Object> application = actionContext.getApplication(); application.put(key, value);查看全部
-
1.访问Servlet API查看全部
-
1.访问servlet API查看全部
-
struts.properties属性文件查看全部
-
struts.xml模板配置查看全部
-
struts.xml模板查看全部
-
struts.xml模板文件查看全部
-
struts.properties属性文件查看全部
-
核心文件——struts.xml struts2的核心配置文件,在开发过程中利用率最高。 该文件主要负责管理Action的映射,以及该Action包含的Result定义等。查看全部
-
struts.xml查看全部
-
web.xlm查看全部
-
web.xml核心文件查看全部
举报
0/150
提交
取消