关于使用最新开发工具IntelliJ IDEA创建SpringMVC+MyBatis项目(二.集成springMVC)

先进这个网站 :http://mvnrepository.com  该网站是查找meven依赖库的写法。

查找spring-mvc的依赖库

选择第一个,点进去

里面是springmvc的版本,我们选择使用次数最多的一个。

将红框里面的代码复制到项目的pom.xml中

我们需要将spring的版本号提取出来,方便管理

在文件上面(project下面)增加代码

<properties>
  <spring.version>4.3.14.RELEASE</spring.version>
</properties>

版本直接引用

<version>${spring.version}</version>

然后依次再添加servlet-api和jstl支持,步骤同上

添加完后如下

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-webmvc</artifactId>
  <version>${spring.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
  <groupId>javax.servlet</groupId>
  <artifactId>javax.servlet-api</artifactId>
  <version>3.1.0</version>
  <scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
<dependency>
  <groupId>javax.servlet</groupId>
  <artifactId>jstl</artifactId>
  <version>1.2</version>
</dependency>

接下来添加spring-mvc.xml

打开如下图

在web.xml中配置springmvc,我的配置如下,仅供参考

<web-app version="2.4"
         xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  <servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:spring-mvc.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

  <!-- 设置编码格式为UTF8 -->
  <filter>
    <filter-name>characterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
      <param-name>encoding</param-name>
      <param-value>UTF-8</param-value>
    </init-param>
    <init-param>
      <param-name>forceEncoding</param-name>
      <param-value>true</param-value>
    </init-param>
  </filter>


  <welcome-file-list>
    <welcome-file>/index.html</welcome-file>
  </welcome-file-list>

</web-app>

配置完web.xml我们回到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:mvc="http://www.springframework.org/schema/cache"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
       <!--使用注解来进行请求映射-->
       <mvc:annotation-driven/>
       <!--配置视图解析器-->
       <bean class="org.springframework.web.servlet.view.InternalResourceView">
           <!--重定向是否添加上下文-->
           <property name="redirectContextRelative" value="true"></property>
           <property name="suffix" value="/WEB-INF/view/"></property>
           <property name="prefix" value=".jsp"></property>
       </bean>
    <!--扫描所有控制器-->
      <context:component-scan base-package="com.zhi.web.handle"></context:component-scan>
</beans>

猜你喜欢

转载自blog.csdn.net/qq_34128089/article/details/80858819