Spring-boot集成pg、mongo多數(shù)據(jù)源過程詳解
這篇文章主要介紹了Spring-boot集成pg、mongo多數(shù)據(jù)源過程詳解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
修改POM文件,增加相應(yīng)Jar包
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency>
修改啟動(dòng)類,去除原有的數(shù)據(jù)源自動(dòng)加載機(jī)制
@SpringBootApplication(
exclude = {DataSourceAutoConfiguration.class,
PageHelperAutoConfiguration.class ,
MongoAutoConfiguration.class, MongoDataAutoConfiguration.class//禁用數(shù)據(jù)源自動(dòng)配置
})
@EnableEurekaClient
public class MainApplication {、、、
編寫application.yml文件,增加配置信息
spring: # 默認(rèn)的postgreSQL庫(kù) datasource: pg: url: jdbc:postgresql://127.0.0.1:5432/pgdb username: us_wu password: netcool@919 driver-class-name: org.postgresql.Driver mg: host: 127.0.0.1 username: aaa password: aaa database: mgdb port: 27017
分別手動(dòng)增加PG、mongo的數(shù)據(jù)源以及使用樣例
pg
1、手動(dòng)加載數(shù)據(jù)源
@Configuration
public class DataSourceConfig {
final String cmspg="spring.datasource.pg";
@Bean(name = "pgDS")
@ConfigurationProperties(prefix =pg)
public DataSource dataSource() {
return DataSourceBuilder.create().build();
}
2、創(chuàng)建pg配置文件,指定SqlSessionFactory以及要掃描的Dao
@Configuration
@MapperScan(basePackages = {"com.**.mapper.pg"}, sqlSessionFactoryRef = "sqlSessionFactory")
public class PostgresDBConfig {
@Autowired
@Qualifier("pgDS")
private DataSource pgDS;
@Bean
public SqlSessionFactory sqlSessionFactory() throws Exception {
SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean();
factoryBean.setDataSource(pgDS);
return factoryBean.getObject();
}
@Bean
public SqlSessionTemplate sqlSessionTemplate() throws Exception {
SqlSessionTemplate template = new SqlSessionTemplate(sqlSessionFactory()); // 使用上面配置的Factory
return template;
}
}
3、編寫Dao--注解形式
@Repository
@Mapper
public interface StCableFiberMapper {
@Select("SELECT * FROM st_cable_fiber WHERE id = #{id}")
St_cable_fiber findById(@Param("id") String id);
mongo
1、加載mongo配置信息
public abstract class AbstractMongoConfigure {
private String host, database, username, password;
private int port;
// Setter methods go here..
/*
* Method that creates MongoDbFactory Common to both of the MongoDb
* connections
*/
public MongoDbFactory mongoDbFactory() throws Exception {
ServerAddress serverAddress = new ServerAddress(host, port);
List<MongoCredential> mongoCredentialList = new ArrayList<>();
mongoCredentialList.add(MongoCredential.createScramSha1Credential(username, database, password.toCharArray()));
return new SimpleMongoDbFactory(new MongoClient(serverAddress,mongoCredentialList), database);
}
/*
* Factory method to create the MongoTemplate
*/
abstract public MongoTemplate getMongoTemplate() throws Exception;
}
@Configuration
@EnableMongoRepositories(basePackages = {"com.**.mapper.mg"},mongoTemplateRef = "mongoTemplate")
@ComponentScan
@ConfigurationProperties(prefix = "spring.datasource.mg")
public class MongoMasterConfig extends AbstractMongoConfigure{
@Override
@Bean("mongoTemplate")
public MongoTemplate getMongoTemplate() throws Exception {
return new MongoTemplate(mongoDbFactory());
}
}
編寫Dao MongoTemplate模式
@Repository
public class CmCableDetailRepo{
@Autowired
private MongoTemplate mongoTemplate;
public Page<Cm_Cable> findByLevelAndName(String areacode, int level,String name,int pageNum, int pageSize){
PageRequest page = new PageRequest(pageNum, pageSize);
Query query = new Query();
Criteria criteria = new Criteria();
criteria.and("areacode").regex("^"+areacode);
if(level > -1){
criteria.and("cableSegment_level").is(level);
}
if(null != name && name.trim().length() > 0){
criteria.and("zh_label").regex(".*?"+name+".*");
}
query.addCriteria(criteria);
Long count = mongoTemplate.count(query, Cm_Cable.class);
List<Cm_Cable> list = mongoTemplate.find(query.with(page), Cm_Cable.class);
return new PageImpl<Cm_Cable>(list, page, count);
}
MongoRepository模式
@Repository
public interface CmCableDetailMapper extends MongoRepository<Cm_Cable, String>{
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
詳解Java中Comparable和Comparator接口的區(qū)別
這篇文章主要介紹了詳解Java中Comparable和Comparator接口的區(qū)別的相關(guān)資料,希望通過本文大家能徹底掌握這部分內(nèi)容,需要的朋友可以參考下2017-09-09
Java使用AOP技術(shù)實(shí)現(xiàn)通用接口驗(yàn)簽工具
這篇文章主要為大家詳細(xì)介紹了Java如何使用AOP技術(shù)實(shí)現(xiàn)通用接口驗(yàn)簽工具,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下吧2025-03-03
使用java springboot設(shè)計(jì)實(shí)現(xiàn)的圖書管理系統(tǒng)(建議收藏)
這篇文章主要介紹了使用java springboot設(shè)計(jì)實(shí)現(xiàn)的圖書管理系統(tǒng),包含了整個(gè)的開發(fā)過程,以及過程中遇到的問題和解決方法,對(duì)大家的學(xué)習(xí)和工作具有借鑒意義,建議收藏一下2021-08-08
詳解SpringBoot程序啟動(dòng)時(shí)執(zhí)行初始化代碼
這篇文章主要介紹了詳解SpringBoot程序啟動(dòng)時(shí)執(zhí)行初始化代碼,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-09-09

