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

com.github.dreamroute.sqlprinter.starter.anno.SqlprinterProperties Maven / Gradle / Ivy

There is a newer version: 2.3.19-RELEASE
Show newest version
package com.github.dreamroute.sqlprinter.starter.anno;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * @author w.dehai
 */
@Data
@ConfigurationProperties(prefix = "sqlprinter")
public class SqlprinterProperties {

    /**
     * 是否显示SQL,默认显示
     */
    private boolean show = true;

    /**
     * 配置不需要打印SQL的mapper方法名
     */
    private String[] filter;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy