io.github.web.validation.WebValidationAutoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-boot-validation Show documentation
Show all versions of web-boot-validation Show documentation
An auto configuration framework for api parameter validation.
package io.github.web.validation;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import javax.annotation.PostConstruct;
/**
* WebCommonAutoConfiguration-配置fastjson、校验信息资源
*
* @author Wilson
*/
@Configuration
@ComponentScan
@Slf4j
@Setter
public class WebValidationAutoConfiguration {
@PostConstruct
public void init() {
log.info("finish web common validation init}");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy