ruoyi 使用pg数据库,如何调整框架
时间: 2024-05-04 21:18:06 浏览: 110
要在 Ruoyi 框架中使用 PostgreSQL 数据库,您需要进行以下调整:
1. 添加 PostgreSQL 驱动程序
在 pom.xml 文件中添加以下依赖项:
```xml
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>版本号</version>
</dependency>
```
请将 “版本号” 替换为您正在使用的 PostgreSQL 版本号。
2. 配置数据源
在 application.yml 文件中,将数据源的配置修改为如下所示:
```yml
spring:
datasource:
url: jdbc:postgresql://localhost:5432/数据库名称
username: 用户名
password: 密码
driver-class-name: org.postgresql.Driver
```
请将 “localhost” 替换为您的 PostgreSQL 服务器地址,“5432” 替换为您的 PostgreSQL 服务器端口,“数据库名称” 替换为您要连接的数据库名称,“用户名” 替换为您的数据库用户名,“密码” 替换为您的数据库密码。
3. 修改 Mybatis 配置
在 application.yml 文件中,将 Mybatis 的配置修改为如下所示:
```yml
mybatis:
type-aliases-package: 包名
mapper-locations: classpath*:mapper/**/*Mapper.xml
configuration:
map-underscore-to-camel-case: true
cache-enabled: true
jdbc-type-for-null: null
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
```
请将 “包名” 替换为您的实体类所在的包名。
4. 修改生成代码配置
在 generator.properties 文件中,将数据库类型改为 PostgreSQL:
```
# 数据库类型(mysql、oracle、postgresql、sqlserver)
dbType=postgresql
```
完成以上步骤后,就可以在 Ruoyi 框架中使用 PostgreSQL 数据库了。
阅读全文