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

io.github.web.validation.WebValidationAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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