Fork me on GitHub

Cannot load driver class: org.postgresql.Driver

Cannot load driver class: org.postgresql.Driver


 

一、背景介绍

近期需要将一个前后端不分离的 SpringMVC 工程,重构为前后端分离的工程,前端用 Vue框架,后端使用 SpringBoot 框架。

 

二、问题说明

在启动 SpringBoot 服务时,日志报错“Cannot load driver class: org.postgresql.Driver

 

三、解决方案

1、在 pom.xml 文件中引入 postgresql

        <!-- postgresql  -->
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>42.3.1</scope>
        </dependency>

 

2、增加拦截器 MybatisPlusInterceptor

import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.OptimisticLockerInnerInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class MyBatisPlusConfig {

    /**
     * 插件配置
     *
     * @return
     */
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();

        // 向MyBatis-Plus的过滤器链中添加分页拦截器,需要设置数据库类型(主要用于分页方言)
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.POSTGRE_SQL));
//        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        // 添加乐观锁拦截器
        interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
        return interceptor;
    }
}

 

posted @ 2023-02-16 15:51  龙凌云端  阅读(1023)  评论(0编辑  收藏  举报