heowc / SpringBootSample

spring boot sample source

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

com.example.config.WebMvcConfig need to change WebMvcConfigurer

namhokim opened this issue · comments

  • current: WebMvcConfigurerAdapter
    public class WebMvcConfig extends WebMvcConfigurerAdapter {
  • to-be: WebMvcConfigurer
    public class WebMvcConfig implements WebMvcConfigurer {

@namhokim

Thank you!