Mybatis-Plus(连接Hive)

序号类型地址
1MySQLLinux(centos 7.5)服务器安装MySQL5.7
2MySQLLinux服务器安装MySQL8.0
3MySQLMySQL操作之概念、SQL约束(一)
4MySQLMySQL操作之数据定义语言(DDL)(二)
5MySQLMySQL操作之数据操作语言(DML)(三)
6MySQLMySQL操作之数据查询语言:(DQL)(四-1)(单表操作)
7MySQLMySQL操作之数据查询语言:(DQL)(四-2)(多表查询)
8MySQLMySQL操作之数据控制语言:(DC)(五)
9MySQLMySQL操作之数据库函数
10MySQLMySQL管理之数据类型
11MySQLMySQL管理之索引
12MySQLMySQL管理之事务管理
13MySQLMySQL管理之存储过程
14MySQLMySQL管理之视图
15MySQLMySQL管理之数据备份与还原
16MyBatisMyBatis从入门到多表关联
17MyBatisMyBatis常用方法
18MyBatisMybatis逆向工程的使用(附文件地址)
19MyBatisspring boot连接Mybatis数据库的配置文件(MySql、SQLserver、Oracle)
20MyBatis-PlusMybatis-Plus使用案例(包括初始化以及常用插件)
21MyBatis-PlusMybatis-Plus(Service CRUD 接口)
22MyBatis-PlusMybatis-plus 4种条件构造器方式
23MyBatis-PlusMybatis-Plus 执行自定义SQL
24MyBatis-PlusMyBatis-plus配置自定义SQL(执行用户传入SQL)
25MyBatis-PlusMybatis-Plus(连接Hive)
26MyBatis-PlusMybatis-Plus 代码生成器


1、pom依赖

    <dependency>
        <groupId>com.baomidou</groupId>
        <artifactId>mybatis-plus-boot-starter</artifactId>
        <version>3.5.1</version>
    </dependency>
    <dependency>
      <groupId>org.apache.hive</groupId>
      <artifactId>hive-jdbc</artifactId>
      <version>2.3.8</version>
    </dependency>

2、配置文件

spring.datasource.dynamic.hive.driver-class-name=org.apache.hive.jdbc.HiveDriver
spring.datasource.dynamic.hive.url=jdbc:hive2://192.168.0.1:10000/user
spring.datasource.dynamic.hive.username=root
spring.datasource.dynamic.hive.password=root12345
spring.datasource.dynamic.hive.druid.filters=stat,slf4j

3、entity实体类

import lombok.Data;
import java.io.Serializable;

@Data
public class HiveSql implements Serializable {

    private static final long serialVersionUID = 1L;


}

4、mapper

import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.annotation.SqlParser;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.lydms.entity.HiveSql;


@DS("hive")
public interface HiveSqlMapper extends BaseMapper<HiveSql> {

    @SqlParser(filter = true)
    void explainQuery(String sql);

}

5、mapper.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.lydms.mapper.HiveSqlMapper">

    <update id="explainQuery">
        ${templateName,jdbcType=VARCHAR}
    </update>
</mapper>

6、service使用

import com.lydms.mapper.HiveSqlMapper;
import com.lydms.entity.HiveSql;

    @Autowired
    private HiveSqlMapper hiveSqlMapper;

    @Override
    public R<String> checkSqlRule(String sql) {
      hiveSqlMapper.explainQuery(sql);
    }

7、可能遇到的问题

dbType not support : sqlite

解决:

配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall’用于防火墙(启动sqlite时候需要关闭wall)。把filters中的stat,wall,slf4j改成stat,slf4j

spring.datasource.dynamic.hive.druid.filters=stat,slf4j

参考连接:

http://www.zyiz.net/tech/detail-143690.html
MyBatis-PlusMyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。要使用 MyBatis-Plus 连接 PostgreSQL 数据库,你需要按照以下步骤进行配置: 1. 添加依赖:在项目的 pom.xml 文件中添加 MyBatis-Plus 和 PostgreSQL 的依赖项。例如使用 Maven 作为构建工具,你需要添加如下依赖: ```xml <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>版本号</version> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>版本号</version> </dependency> ``` 2. 配置数据源:在 Spring Boot 的配置文件 application.properties 或 application.yml 中添加 PostgreSQL 数据库的连接信息,如: ```properties # application.properties spring.datasource.url=jdbc:postgresql://localhost:5432/数据库名?characterEncoding=UTF-8&serverTimezone=UTC spring.datasource.username=用户名 spring.datasource.password=密码 spring.datasource.driver-class-name=org.postgresql.Driver ``` 或者使用 YAML 格式: ```yaml # application.yml spring: datasource: url: jdbc:postgresql://localhost:5432/数据库名?characterEncoding=UTF-8&serverTimezone=UTC username: 用户名 password: 密码 driver-class-name: org.postgresql.Driver ``` 3. 配置 MyBatis-Plus:在 Spring Boot 配置类中配置 MyBatis-Plus 的扫描路径,以便能够扫描到你的 Mapper 接口: ```java @Configuration @MapperScan("你的Mapper接口所在的包路径") public class MybatisPlusConfig { // 可以在这里添加一些 MyBatis-Plus 的配置,例如分页插件等 } ``` 确保以上步骤正确无误后,你的 MyBatis-Plus 就应该能够连接 PostgreSQL 数据库并进行操作了。
评论 13
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ha_lydms

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值