2021
09-24
09-24
springboot扩展MVC的方法
springboot扩展MVC自定义config->SpringMvcConfig.java下边就是扩展springMVC的模板:第一步:@Configuration注解的作用:让这个类变为配置类。第二步:必须实现WebMvcConfigurer接口。第三步:重写对应的方法。packagecom.lxc.springboot.config;importorg.springframework.context.annotation.Configuration;importorg.springframework.web.servlet.config.annotation.WebMvcConfigurer;/***@扩展springMVC*第一...
继续阅读 >