im.shs.tick.mybatis.resolver.WebMvcConfig Maven / Gradle / Ivy
The newest version!
package im.shs.tick.mybatis.resolver;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import java.util.List;
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void addArgumentResolvers(List argumentResolvers) {
argumentResolvers.add(new SqlFilterArgumentResolver());
}
}