我们都知道 struts2 是基于webframework 出现的 优秀的mvc 框架, 他和struts1 完全没有联系。struts2 是一个框架, 啥叫框架呢?是一个优秀的半成品 。
web的框架在java 中有 webframework struts2 springmvc。。。。
struts2 和struts1 区别
1、没有任何联系
2、struts2内核是webframework
demo1:
struts2 的入门demo:
1、web框架的过滤器
<!-- struts 定义核心的filter filtedispatcher -->
<filter>
<filter-name>sruts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>sruts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
web.xml 中设定过滤器
2、书写一个一般的 struts class
package cn.jiemoxiaodi.demo1; /***********************
*
* @author huli
*
* @version 1.0
*
* @created 2016-6-27
*
***********************
*/ public class Struts2Demo1 {
public String execute() {
System.out.println("dddd");
return "success";
}
}
Struts2Demo1
3、 在jsp页面中 请求的 struts2 默认格式是 ???.action
<a href="${pageContext.request.contextPath}/demo1.action">goto struts2 demo
success</a>
4、配置action 到那个页面去
我们会在 src 文件价下创建struts.xml(固定名字)
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<package name="demo1" extends="struts-default">
<action name="demo1" class="cn.jiemoxiaodi.demo1.Struts2Demo1">
<result name="success">/demo1/success.jsp</result>
</action>
</package>
</struts>
action mapping
好了