package com.dsh.config.Sharding_jdbc;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.context.annotation.PropertySource;
|
import org.springframework.stereotype.Component;
|
|
|
/**
|
* 数据源配置
|
*
|
* @author pzb
|
* @Date 2022/11/21 20:32
|
*/
|
@Component
|
@PropertySource(value = "classpath:sharding-jdbc.properties")
|
@ConfigurationProperties(prefix = "datasource.master0")
|
public class Master0DataSource extends DatasourceModel {
|
|
}
|