package com.lunhan.xxx.common.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component @ConfigurationProperties(prefix = "jdbc-set") public class JdbcSetConfig { private String sqlLog; public String getSqlLog() { return sqlLog; } public void setSqlLog(String sqlLog) { this.sqlLog = sqlLog; } }