美文网首页工作生活
idea创建spring项目

idea创建spring项目

作者: 江海大初学者 | 来源:发表于2019-07-01 18:03 被阅读0次
    1. 打开idea创建一个项目,选择struts2和set up library later,点击下一步


      image.png

      2.在web/WEB-INF/lib下放所有的jar包


      image.png
      3.修改web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
             version="4.0">
        <filter>
            <filter-name>struts2</filter-name>
            //struts 2.5中要改成以下这样
            <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>struts2</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
    </web-app>
    

    4.将所有的jar包引入


    image.png
    1. 若没有struts-default,则这样


      image.png

    相关文章

      网友评论

        本文标题:idea创建spring项目

        本文链接:https://www.haomeiwen.com/subject/nijncctx.html