所以我写了一个小应用程序, 为了熟悉基础知识,我尽可能地简化了它。 我用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
正常工作,但是我的应用程序可以正常工作完全地。
怎么不抛出错误?
答案 0 :(得分:8)
@SpringBootApplication 是一个方便注释,它添加了以下所有内容:
答案 1 :(得分:4)
使用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。
答案 2 :(得分:0)
因为您使用的是启动应用程序@SpringBootApplication,所以此注释默认情况下启用注释驱动的应用程序(mvc:annotation-driven)。您不需要提供配置。了解有关@SpringBootApplication的信息 https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-using-springbootapplication-annotation.html。