工作生活

idea创建spring项目

2019-07-01  本文已影响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
上一篇下一篇

猜你喜欢

热点阅读