com.github.dreamroute.sqlprinter.starter.anno.SqlprinterProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlprinter-spring-boot-starter Show documentation
Show all versions of sqlprinter-spring-boot-starter Show documentation
print sql use real value replace '?' in sql fragment.
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