为啥spring-boot应用程序不需要@EnableWebMvc

Posted

技术标签:

【中文标题】为啥spring-boot应用程序不需要@EnableWebMvc【英文标题】:why spring-boot application doesn't require @EnableWebMvc为什么spring-boot应用程序不需要@EnableWebMvc 【发布时间】:2018-12-03 03:19:16 【问题描述】:

所以我写了一个小应用程序, 为了熟悉基础知识,我使它尽可能简单。 我用 Config.java 文件制作了一个简单的 mvc 应用程序,当我认为现在应用程序应该抛出一个错误时,它实际上可以工作。

这是我的 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>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
         <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency> 
        <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

我的配置文件只有一个视图解析器:

package com.example.demo;

import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.ViewResolver;

import org.springframework.web.servlet.view.InternalResourceViewResolver;
import org.springframework.web.servlet.view.JstlView;


@Configuration
public class DemoConfig 

    @Bean
    public ViewResolver internalResourceViewResolver() 
        InternalResourceViewResolver bean = new InternalResourceViewResolver();
        bean.setViewClass(JstlView.class);
        bean.setPrefix("/templates/");
        bean.setSuffix(".html");
        return bean;
    

主文件

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DemoApplication 

    public static void main(String[] args) 
        SpringApplication.run(DemoApplication.class, args);
    

最后是控制器类: 包 com.example.demo.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class TestController 
    @GetMapping(value="home")
    public String home() 
        return "home";
    

Application.properties

server.servlet.context-path=/demo

所以这是整个应用程序,我记得我需要在 web.xml 中使用 mvc:annotation- driven@enablewebmvc 才能使 @getmapping@controller 工作,但我的应用程序完全工作。 怎么不报错?

【问题讨论】:

【参考方案1】:

@SpringBootApplication 是一个方便的注解,它添加了以下所有内容:

@Configuration 将类标记为 应用程序上下文。 @EnableAutoConfiguration 告诉 Spring Boot 开始添加 bean 基于类路径设置、其他 bean 和各种属性 设置。 通常您会为 Spring MVC 应用程序添加 @EnableWebMvc,但 Spring Boot 在看到 spring-webmvc 时会自动添加 类路径。这会将应用程序标记为 Web 应用程序,并且 激活关键行为,例如设置 DispatcherServlet。 @ComponentScan 告诉 Spring 寻找其他组件, hello 包中的配置和服务,允许它 找到控制器。

【讨论】:

记住第三点很重要。不要使用@EnableWebMvc 注释任何@Configuration 类。否则,Spring MVC 将加载并使用它自己的序列化/反序列化配置,而忽略您的 Spring Boot 配置。 如果您不使用 @EnableWebMvc 注释,您最初可能不会注意到任何区别,但内容类型和接受标头之类的内容通常无法进行内容协商。 ~5 小时来理解,如果 Web 应用程序正常工作,我在 pom.xml 中没有 spring-autoconfigure-web,所以没有 @EnableWebMvc,所以只是 MultipartFile 不工作整个网络相关的东西,感谢自动配置来实现这个简单的配置硬调试工作流程。【参考方案2】:

你得到的行为:“一切正常”是 Spring Boot 所期望的。 Spring Boot 不是 Spring:这比 Spring 更进一步。 事实上,Spring Boot 尽可能地减少了使您的应用程序正常工作所需的配置。 引入 @SpringBootApplication 注释以使您的应用程序成为 Spring 驱动的应用程序就是一个很好的例子。 此外,Spring Boot 提出了一些启动器来打包依赖项以及 Spring 配置。

在您的情况下,当您将 spring-boot-starter-web 声明为依赖项时,设置了 Spring MVC 配置和其他与使用 Spring 的 Web 应用程序相关的内容。documentation 确实声明了:

11.3.2 @EnableAutoConfiguration 注解

由于 spring-boot-starter-web 添加了 Tomcat 和 Spring MVC, 自动配置假设您正在开发一个 Web 应用程序 并相应地设置 Spring。

【讨论】:

【参考方案3】:

因为你使用的是启动应用程序,@SpringBootApplication 这个注解默认启用注解驱动的应用程序(mvc:annotation-driven)。您无需提供配置。阅读@SpringBootApplication https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-using-springbootapplication-annotation.html.

【讨论】:

"你不需要提供配置"是不是也没有配置文件? 表示根据类路径中的jar等方式提供默认的基本配置。并非所有复杂的配置

以上是关于为啥spring-boot应用程序不需要@EnableWebMvc的主要内容,如果未能解决你的问题,请参考以下文章

为啥 spring-boot 应用程序无法在 AWS 中运行,但在本地运行良好?

为啥必须在 spring-boot 中为 web 应用程序提供单独的 @Controller 类文件?

为啥我用 spring-boot 得到 404 休息

为啥 spring-boot 和 postgres 连接会在一段时间后断开?

为啥添加 @EnableAutoConfiguration 会导致 spring-boot 失败并显示“无法找到要扫描的 JPA 包”

为啥 H2 进行 spring-boot 测试,但它会将数据写入我的本地 mysql 数据库?