All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy