您现在的位置是:首页 > 文章详情

BeeCP-Starter 1.3.1 发布,Spring Boot 上的启动器

日期:2020-06-29点击:345

BeeCP-Starter是小蜜蜂连接池在Springboot上的启动器

相关功能

1:文件方式配置数据源信息

2:支持多数据源配置

3:可通过自定义的方式支持其他数据源

4:支持配置Jndi数据源引入配置

运行依赖

1:Java版本:JDK1.8

2:Springboot版本:2.0.9.RELEASE

3:BeeCP版本:2.4.7

版本下载

 <dependency> <groupId>com.github.chris2018998</groupId> <artifactId>spring-boot-starter-beecp</artifactId> <version>1.3.1.RELEASE</version> </dependency>

 

单数据源范例

application.properties

  #单数据源配置点(ioc注册名:beeDataSource) spring.datasource.type=cn.beecp.BeeDataSource spring.datasource.poolName=BeeCP1 spring.datasource.username=root spring.datasource.password= spring.datasource.jdbcUrl=jdbc:mysql://localhost:3306/test spring.datasource.driverClassName=com.mysql.jdbc.Driver 

IOC 

多数据源范例

application.properties

 #多数据源配置起点(ioc注册名分别是d1,d2,d3) spring.datasource.nameList=d1,d2,d3 #第1数据源 spring.datasource.d1.primary=true spring.datasource.d1.poolName=BeeCP1 spring.datasource.d1.username=root spring.datasource.d1.password=root spring.datasource.d1.jdbcUrl=jdbc:mysql://localhost:3306/test spring.datasource.d1.driverClassName=com.mysql.cj.jdbc.Driver #第2数据源 spring.datasource.d2.jndiName=testDB #第3数据源 spring.datasource.d3.poolName=testDB spring.datasource.d3.datasourceType=com.xxx.xxxDataSource spring.datasource.d3.datasourceAttributeSetFactory=xxxx spring.datasource.d3.username=root spring.datasource.d3.password=root spring.datasource.d3.jdbcUrl=jdbc:mysql://localhost:3306/test spring.datasource.d3.driverClassName=com.mysql.cj.jdbc.Driver #xxxx为对应连接池的属性注入工厂类的实现,请参照*扩展接口* 

DemoApplication.java

 //引入多数据源标签 @EnableMultiDataSource @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } } 

扩展接口

  public interface DataSourceAttributeSetFactory { //get Properties value from environment and set to dataSource public void set(DataSource ds,String configPrefix,Environment environment)throws Exception; }
原文链接:https://www.oschina.net/news/116797/beecp-starter-1-3-1-released
关注公众号

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。

持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。

转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。

文章评论

共有0条评论来说两句吧...

文章二维码

扫描即可查看该文章

点击排行

推荐阅读

最新文章