零配置簡單搭建SpringMVC 項目

  SpringMVC是比較經常使用的JavaWeb框架,很是輕便強悍,能簡化Web開發,大大提升開發效率,在各類Web程序中普遍應用。本文采用Java Config的方式搭建SpringMVC項目,並對SpringMVC啓動時加載順序作簡單的說明。html

一、SpringMVC啓動流程圖

二、SpringMVC項目啓動流程介紹

SpringMVC 是Spring 框架的重要模塊,藉助於Spring 的容器技術,能夠很是方面的搭建Web項目。前端

SpringMVC項目啓動時要完成Spring 容器的初始化和SpringMVC配置的初始化。web

2.1 Spring容器的初始化:

一、項目中須要配置ContextLoadListener監聽器,它會監聽項目的啓動,在項目啓動時調用容器初始化方法完成Spring容器的初始化spring

若是採用XML配置,一般須要在web.xml文件裏面添加以下配置:apache

  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

本文采用Java Config 實現,因此在配置中繼承了AbstractAnnotationConfigDispatcherServletInitializer 這個抽象類,這個類的繼承關係以下:數組

在父類AbstractContextLoaderInitializer中註冊了ContextLoadListener監聽器:瀏覽器

二、在須要在容器初始化時建立的類上面加上註解,就能夠實現Bean的自動裝配了。mvc

@Controller @Service @Bean  @Conponent等註解均可以顯示代表Bean須要自動裝配app

三、配置Bean初始化的範圍框架

2.2 SpringMVC 的配置

 一、配置SpringMVC須要添加DispatchServlet ,DispatcherServlet主要負責前端調用URL的分發,他在Web容器初始化的時候被註冊。在2.1中,咱們已經知道,本文配置中繼承了DispatchServlet 的一個抽象類AbstractAnnotationConfigDispatcherServletInitializer ,此抽象類的父類在實例化的時候會註冊一個DispatchServlet到容器中,方法名以下。

二、定義視圖解析器

   前端訪問URL,DispatchServlet 會把URL 匹配到Controller中相應的@RequstMapper的方法上去,該方法處理完請求後返回須要的業務數據模型,而後會調用本身的視圖解析器把數據渲染到前端頁面中,渲染以後返回給瀏覽器。

視圖解析器定義以下:

三、其實SpringMVC 項目啓動時配置的東西還有不少,HandlerException 異常處理,數據校驗等,這些Spring提供的抽象類WebMvcConfigurerAdapter中已經實現好了,咱們在項目中直接繼承就好了。

三、代碼實現:

項目採用Maven管理:pom.xml以下:

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>lime</groupId>
  <artifactId>web</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>war</packaging>

  <name>web Maven Webapp</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-webmvc</artifactId>
      <version>5.1.0.RELEASE</version>
    </dependency>
  </dependencies>

  <build>
    <finalName>web</finalName>
    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
      <plugins>
        <plugin>
          <artifactId>maven-clean-plugin</artifactId>
          <version>3.0.0</version>
        </plugin>
        <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.7.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.20.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-war-plugin</artifactId>
          <version>3.2.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.5.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>2.8.2</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

項目結構以下:

RootConfig類中配置了包掃描的範圍:

package config;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

/**
 * @Author liangmy
 * @Date 2018/9/27
 */
@Configuration
@ComponentScan(basePackages = {"example"})
public class RootConfig {
}

WebConfig 中配置了視圖解析器以及RequestMapper的掃描範圍

package config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.view.InternalResourceViewResolver;

/**
 * @Author liangmy
 * @Date 2018/9/27
 */
@Configuration
@EnableWebMvc
@ComponentScan("example.controller")
public class WebConfig extends WebMvcConfigurerAdapter{

    @Bean
    public ViewResolver viewResolver(){
        InternalResourceViewResolver resolver = new InternalResourceViewResolver();
        resolver.setPrefix("/WEB-INF/views/");
        resolver.setSuffix(".jsp");
        resolver.setExposeContextBeansAsAttributes(true);
        return resolver;
    }


    /**
     * 啓用spring mvc 的註解
     * @param configurer
     */
    @Override
    public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        configurer.enable();
    }
}

WebAppInitializer類配置了容器初始化時須要加載的配置類

package config;

import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

/**
 * @Author liangmy
 * @Date 2018/9/27
 */
public class WebAppInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {

    // Spring Ioc 容器配置
    @Override
    protected Class<?>[] getRootConfigClasses() {
        // 能夠返回Spring的Java配置文件數組
        return new Class<?>[]{
                RootConfig.class
        };
    }

    // DispatcherServlet 的URI映射關係配置
    @Override
    protected Class<?>[] getServletConfigClasses() {
        // 能夠返回Spring的Java配置文件數組
        return new Class<?>[]{
                WebConfig.class
        };
    }

    // DispatcherServlet 攔截請求匹配
    @Override
    protected String[] getServletMappings() {
        return new String[]{
                "/"
        };
    }
}

TestController中定義了測試用的URL:

package example.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

/**
 * @Author liangmy
 * @Date 2018/9/27
 */
@Controller
public class TestController {

    @RequestMapping(value = "/test", method = RequestMethod.GET)
    public String test(){
        return "test";
    }
}

 

啦啦啦

相關文章
相關標籤/搜索