自己也来写个简易struts框架,呵呵!!

引用

如何使用org-tarena-struts-1.0.1.jar
step1: 导入org-tarena-struts-1.0.1.jar,以及其它依赖的jar文件。

commons-beanutils-1.8.0.jar
commons-collections-3.2.1.jar
commons-digester-1.8.jar
commons-logging.jar

step2: 配置ActionServlet

<servlet>
    <servlet-name>ActionServlet</servlet-name>
    <servlet-class>com.tarena.strutsdemo.controller.ActionServlet</servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>ActionServlet</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>

step3:写view和model

model:继承Action,实现execute方法。

step4:在easystruts-config.xml中配置(例如)
(注:位置要在src目录下面)
<action-mappings>

<action path="/doOne" type="model.DoOneAction">
path为访问的路径名,type是action的具体类路径名
<forward name="one" path="/two.jsp" redirect="false"/>
name为action的execute方法返回的string对象,path为跳转的页面,redirect为true:重定向,false为转发
</action>

</action-mapping>

你可能感兴趣的:(框架,xml,struts)