1 Star 0 Fork 43

清弦 / free-bsf-all

forked from 车江毅 / free-bsf-all 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pgsql.md 824 Bytes
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
川乌 提交于 2023-08-09 15:26 . 3.4版本号

bsf 使用pgsql注意事项

常见springboot+mybatis plus+pgsql的坑须知

https://www.cnblogs.com/haolb123/p/14263133.html

pgsql 推荐兼容方案

  1. 尽量采用同mysql的场景类型

常用配置

    <dependency>
        <groupId>org.postgresql</groupId>
        <artifactId>postgresql</artifactId>
    </dependency>
  • 配置pgsql链接地址
# springboot默认数据源,pgsql配置
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://127.0.0.1:5432/demo
spring.datasource.username=root
spring.datasource.password=
# shardingjdbc数据源,pgsql配置
尚未验证,待完善
Java
1
https://gitee.com/sumnear/free-bsf-all.git
git@gitee.com:sumnear/free-bsf-all.git
sumnear
free-bsf-all
free-bsf-all
3.4-SNAPSHOT

搜索帮助