SpringBoot中mvc配置
使用@Configuration注解,千万不能使用@EnableWebMvc该注解会关闭所有SpringBoot的mvc原有配置
package com.peng; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class MyConfig implements WebMvcConfigurer { }
ALT+INSERT(或者CTRL+O)
可以重写相关方法