环境配置——IDEA搭建maven+spring mvc开发环境

1. 新建工程,选择maven项目,选择如下图选项,next

环境配置——IDEA搭建maven+spring mvc开发环境_第1张图片

2. 填写groupId和artifactId,这是maven为了确定项目在maven仓库中的唯一性而设置的。groupId一般写域名.公司名,artifactId则是项目名。

环境配置——IDEA搭建maven+spring mvc开发环境_第2张图片

3.选择maven配置文件地址,可以选择自己下载的maven,然后自定义配置文件中的仓库地址,就不用所有东西都堆在C盘了。以及将远程仓库地址改为阿里云仓库,这样下载速度会快一些。

环境配置——IDEA搭建maven+spring mvc开发环境_第3张图片

环境配置——IDEA搭建maven+spring mvc开发环境_第4张图片

环境配置——IDEA搭建maven+spring mvc开发环境_第5张图片

4.然后一路next,就可以完成maven工程的构建了。接下来配置spring MVC的环境,右键工程名,选择add framework support,选择spring mvc,然后编译器就会开始构建spring mvc的环境了。

环境配置——IDEA搭建maven+spring mvc开发环境_第6张图片

环境配置——IDEA搭建maven+spring mvc开发环境_第7张图片

5. 在pom.xml中加入spring依赖


    <dependency>
      <groupId>org.springframeworkgroupId>
      <artifactId>spring-coreartifactId>
      <version>4.1.3.RELEASEversion>
    dependency>
    <dependency>
      <groupId>org.springframeworkgroupId>
      <artifactId>spring-contextartifactId>
      <version>4.1.3.RELEASEversion>
    dependency>
    <dependency>
      <groupId>org.springframeworkgroupId>
      <artifactId>spring-webmvcartifactId>
      <version>4.1.3.RELEASEversion>
    dependency>

    <dependency>
      <groupId>org.springframeworkgroupId>
      <artifactId>spring-webartifactId>
      <version>4.1.3.RELEASEversion>
    dependency>
    <dependency>
      <groupId>org.springframeworkgroupId>
      <artifactId>spring-ormartifactId>
      <version>3.2.4.RELEASEversion>
    dependency>
    <dependency>
      <groupId>org.springframeworkgroupId>
      <artifactId>spring-beansartifactId>
      <version>4.1.3.RELEASEversion>
    dependency>
    <dependency>
      <groupId>org.springframeworkgroupId>
      <artifactId>spring-aopartifactId>
      <version>4.1.3.RELEASEversion>
    dependency>

6.配置web.xml,Spring IoC上下文配置文件appliacitonContext.xml和映射请求上下文配置文件dispatcher-servlet.xml

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">
  
  <context-param>
    <param-name>contextConfigLocationparam-name>
    <param-value>/WEB-INF/applicationContext.xmlparam-value>
  context-param>
  
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>
  listener>
  
  <servlet>
    <servlet-name>dispatcherservlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
    <load-on-startup>2load-on-startup>
  servlet>
  
  <servlet-mapping>
    <servlet-name>dispatcherservlet-name>
    <url-pattern>*.dourl-pattern>
  servlet-mapping>
web-app>

applicationContext.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:p="http://www.springframework.org/schema/p"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">

    
    <context:annotation-config/>


beans>

dispatcher-servlet.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:p="http://www.springframework.org/schema/p"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
       http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">

    
    <mvc:annotation-driven/>
    
    <context:component-scan base-package="com.leran.example.*"/>
    
    <bean id="viewResolver"
          class="org.springframework.web.servlet.view.InternalResourceViewResolver"
          p:prefix="/WEB-INF/jsp/" p:suffix=".jsp"/>

    
beans>

7. 接着配置tomcat服务器,右上角Add Configuration,点左上角的加号,选择tomcat server,local,进入tomcat配置页面,选择deployment,添加Artifact,选择第一个就可以了

环境配置——IDEA搭建maven+spring mvc开发环境_第8张图片

环境配置——IDEA搭建maven+spring mvc开发环境_第9张图片

环境配置——IDEA搭建maven+spring mvc开发环境_第10张图片

环境配置——IDEA搭建maven+spring mvc开发环境_第11张图片

8.现在环境就配完了,写一个controller测试一下,工程结构配置如图,注意test.jsp的位置,和diapatcher-servlet.xml中的配置位置是相对应的

环境配置——IDEA搭建maven+spring mvc开发环境_第12张图片

环境配置——IDEA搭建maven+spring mvc开发环境_第13张图片

 写的不是特别完善,如有问题还请指正

 

转载于:https://www.cnblogs.com/yingying7/p/11287354.html

你可能感兴趣的:(环境配置——IDEA搭建maven+spring mvc开发环境)