简单搭建一个helloword程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单搭建一个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程序的主要内容,如果未能解决你的问题,请参考以下文章

Markdown学习

J2. Java程序设计之环境搭建与HelloWord

Notes 20180507 : Java程序设计之环境搭建与HelloWord

第一节——第一个Java程序

java相关准备环境搭建HelloWord程序

程序员的入门 简单的编程HelloWord