首页 > 代码库 > 简单搭建一个helloword程序

简单搭建一个helloword程序

序言:

  人生最大的遗憾不是失败,而是我本可以!挣扎了好久,决定开始做一些事,从简单入手,坚持下去,希望以后某一天回头还能看到一步一个脚印中的我!

  

搭建helloword程序

  1.http://struts.apache.org/ 下载struts-2.3.32-all.zip;

  2.创建web project程序,导入struts-2.3.32-all.zip中的struts2-blank.war解压缩lib中的jar包;

  3.web.xml文件配置过滤器

   <filter>
     <filter-name>struts2</filter-name>
     <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>

  4.导入struts.xml配置文件:

   * 需要关联http://struts.apache.org/dtds/struts-2.3.dtd配置文件才会有提示

   * package(namespace)、action(class,method)、result(name,type)默认值

   <struts>
     <package name="helloworld" extends="struts-default" namespace="/">
        <action name="login" class="com.opensymphony.xwork2.ActionSupport" method="execute">
           <result name="success" type="dispatcher">/WEB-INF/login.jsp</result>
        </action>
     </package>
  </struts>

  5.启动tomcat加载该项目;

  6.访问浏览器:http://localhost:8080/项目名/login

简单搭建一个helloword程序