Intellij IDEA 配置最简单的maven-struts2环境的web项目

 

在idea里搭建maven项目

看着网上大神发的各种博客,然后自己搭建出来一个最简单的maven-strtus2项目,供初学者学习

  1. 新建project

    下一步 什么都不选,直接finish

  2. idea里的jar包管理都是通过pom.xml来实现的,下面就开始配置pom.xml文件,来给项目加上struts2的jar包
    1. 很多人会对pom.xml里的依赖配置迷惑,给大家推荐一个网站,里面有各种jar的依赖配置 http://maven.oschina.net/index.html#nexus-search;quick~struts

  3. 将依赖拷贝到pom.xml里保存,idea会自动下载jar文件到你本地安装的maven配置的库里(这里把jstl的包也添加一下)

  4. 开始配置项目的服务器,添加web支持等


    将服务器添加上后,在添加web支持

  5. 接下来配置web.xml,struts.xml,并添加action包,以及action类,我这就直接贴代码

    web.xml

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    <?xml version="1.0" encoding="UTF-8"?>
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
              http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
             version="2.5">
     
        <filter>
            <filter-name>struts</filter-name>
            <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>struts</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
     
    </web-app>

    struts.xml

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    <?xml version="1.0" encoding="UTF-8"?>
     
    <!DOCTYPE struts PUBLIC
            "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
     
    <struts>
     
        <!-- 支持动态调用 -->
        <constant name="struts.enable.DynamicMethodInvocation" value="true"/>
        <!-- 设置开发模式 -->
        <constant name="struts.devMode" value="true"/>
     
        <package name="front" namespace="/" extends="struts-default">
     
            <action name="user" class="hello.HelloAction">
                <result name="success">/index.jsp</result>
            </action>
     
        </package>
     
    </struts>

     HelloAction.java

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    package hello;
     
    import com.opensymphony.xwork2.ActionSupport;
    import org.apache.struts2.ServletActionContext;
     
    import javax.servlet.http.HttpServletRequest;
     
    /**
     * Created by Yang on 14-3-27.
     */
    public class HelloAction extends ActionSupport{
     
        HttpServletRequest request = ServletActionContext.getRequest();
     
        public String hello() {
            request.setAttribute("hello", "hello world!");
            return SUCCESS;
        }
     
    }

    index.jsp

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    <%--
      Created by IntelliJ IDEA.
      User: Yang
      Date: 14-3-27
      Time: 下午5:16
      To change this template use File | Settings | File Templates.
    --%>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
        <title></title>
    </head>
    <body>
    this is a jsp page.
    <br> ${hello}
    </body>
    </html>
    下面是项目的位置:

  6. 下面配置tomcat服务器

    没有配置tomcat的需要先配置一个tomcat,配置方法就不发了,直接发布项目吧

    ok,这样项目就配置到对应的服务器了,现在只需要启动服务器等待就可以了

  7. 在浏览器里输入http://localhost:8080/maven-struts/hello!hello

    访问的结果如图:大功告成

    

posted @ 2016-06-29 16:45  恋恋西风  阅读(324)  评论(0编辑  收藏  举报