**
idea手动创建spring mvc入门项目
**
1、下载spring mvc相关的jar包,登录https://repo.spring.io/libs-release-local/站点,该页面显示一个目录列表,沿着org-springframework-spring路径进入,即可看到spring框架各个版本的压缩包的下载链接。本文下载的是spring的5.0.1版本。解压下载好的压缩包,libs文件夹下的就是需要的jar包。
2、下载common-logging的jar包,登录http://commons.apache.org/站点,沿着Release-Logging路径进入,下载commons-logging-1.2.jar包文件,这个jar也要添加到项目中去。
3、创建spring mvc项目
(1)打开idea,点击file new project,选择spring,spring mvc,然后点击next
(2)输入项目名称,我这里项目名称为spring-mvc
(3)点击finish即可创建好项目,此时idea会自动下载相关的jar包,因为没有配置,所以下载jar包会走外网,下载速度很慢,这里可以直接点击cancel,直接创建好一个空的项目
(4)创建一个lib文件加,存放相关的jar包,直接把下载好的jar包粘贴到lib文件夹下即可。主要需要把刚刚下载好的spring的jar包和commons-logging-1.2.jar包都粘贴进去。
(5)点击file,选择project structure,找到modules
(6)点击右侧的+号,选择第一个,找到刚刚的lib文件夹,选中,点击ok,再点击+号,选择第二个,选择tomcat
最后确定即可
(7)然后配置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">
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-mvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
(8)再在WEB-INF下创建spring-mvc.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="org.fkit.controller"/>
<mvc:annotation-driven/>
<mvc:default-servlet-handler/>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="WEB-INF/content/" p:suffix=".jsp"/>
</beans>
(9)配置tomcat。点击标注出,进入配置页面
点击+号,选择local
按照图示配置好
再点击Deployment,选择+号,选择Artifact,将标注出从删除
点击确认即可