package com.gkhy.hazmat.framework.config.properties;
|
|
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.context.annotation.Configuration;
|
|
@Configuration
|
public class ShardingProperties {
|
|
@Value("${spring.shardingsphere.configLocation}")
|
private String configLocation;
|
|
public String getConfigLocation() {
|
return configLocation;
|
}
|
}
|