Beelt初次使用

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 高可用系列,价值2615元额度,1个月
简介: Beelt初次使用

官方文档


地址:

BeetlSQL 2.12中文文档

Beetl 3中文文档

官网地址


依赖引入


maven方式 导入pom.xml文件

    <dependency>
            <groupId>com.ibeetl</groupId>
            <artifactId>beetl</artifactId>
            <version>3.1.8.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>com.ibeetl</groupId>
            <artifactId>beetlsql</artifactId>
            <version>2.13.0.RELEASE</version>
        </dependency>


数据库demo

CREATE TABLE `user` (
      `id` INT(11) NOT NULL AUTO_INCREMENT,
      `name` VARCHAR(64) DEFAULT NULL,
      `age` INT(4) DEFAULT NULL,
      `create_date` DATETIME NULL DEFAULT NULL,
      PRIMARY KEY (`id`)
) ENGINE=INNODB DEFAULT CHARSET=utf8;


工具类


辅助类生成


生成pojo类代码

import org.beetl.sql.core.*;
import org.beetl.sql.core.db.DBStyle;
import org.beetl.sql.core.db.MySqlStyle;
import org.beetl.sql.ext.DebugInterceptor;

public class Assist {
    public static void main(String[] args) throws Exception {
        String driver = "com.mysql.cj.jdbc.Driver";
        String url = "jdbc:mysql://localhost:3306/ph?serverTimezone=UTC";
        String userName = "root";
        String password = "123456";
        ConnectionSource source = ConnectionSourceHelper.getSimple(driver, url, userName, password);
        DBStyle mysql = new MySqlStyle();
// sql语句放在classpagth的/sql 目录下
        SQLLoader loader = new ClasspathLoader("/sql");
// 数据库命名跟java命名一样,所以采用DefaultNameConversion,还有一个是UnderlinedNameConversion,下划线风格的,
        UnderlinedNameConversion nc = new UnderlinedNameConversion();
        SQLManager sqlManager = new SQLManager(mysql, loader, source, nc, new Interceptor[]{new DebugInterceptor()});
        sqlManager.genPojoCodeToConsole("user");
        sqlManager.genSQLTemplateToConsole("user");
    }
}

控制台输出结果:

BeetlSQL 运行在 product=false,md charset=UTF-8
package com.test;
import java.math.*;
import java.util.Date;
import java.sql.Timestamp;
import org.beetl.sql.core.annotatoin.Table;
/* 
* 
* gen by beetlsql 2021-11-30
*/
@Table(name="ph.user")
public class User   {
  
  // alias
  public static final String ALIAS_id = "id";
  public static final String ALIAS_age = "age";
  public static final String ALIAS_name = "name";
  public static final String ALIAS_create_date = "create_date";
  
  private Integer id ;
  private Integer age ;
  private String name ;
  private Date createDate ;
  
  public User() {
  }
  
  public Integer getId(){
    return  id;
  }
  public void setId(Integer id ){
    this.id = id;
  }
  
  public Integer getAge(){
    return  age;
  }
  public void setAge(Integer age ){
    this.age = age;
  }
  
  public String getName(){
    return  name;
  }
  public void setName(String name ){
    this.name = name;
  }
  
  public Date getCreateDate(){
    return  createDate;
  }
  public void setCreateDate(Date createDate ){
    this.createDate = createDate;
  }
}



sample
===
* 注释

  select #use("cols")# from user  where  #use("condition")#

cols
===
  id,name,age,create_date

updateSample
===
  
  id=#id#,name=#name#,age=#age#,create_date=#createDate#

condition
===

  1 = 1  
  @if(!isEmpty(id)){
   and id=#id#
  @}
  @if(!isEmpty(name)){
   and name=#name#
  @}
  @if(!isEmpty(age)){
   and age=#age#
  @}
  @if(!isEmpty(createDate)){
   and create_date=#createDate#
  @}
  
  
Process finished with exit code 0

Tools


有些报错我不知道怎么解决,便注释掉了

执行一些基础的sql语句

import com.example.dao.UserDao;
import com.example.pojo.User;
import org.beetl.sql.core.*;
import org.beetl.sql.core.db.DBStyle;
import org.beetl.sql.core.db.MySqlStyle;
import org.beetl.sql.core.query.Query;
import org.beetl.sql.ext.DebugInterceptor;

import java.util.List;

public class Tools {
    public static void main(String[] args) {
        String driver = "com.mysql.jdbc.Driver";
        String url = "jdbc:mysql://localhost:3306/ph?serverTimezone=UTC";
        String userName = "root";
        String password = "985464";
        ConnectionSource source = ConnectionSourceHelper.getSimple(driver, url, userName, password);
        DBStyle mysql = new MySqlStyle();
// sql语句放在classpagth的/sql 目录下
        SQLLoader loader = new ClasspathLoader("/sql");
// 数据库命名跟java命名一样,所以采用DefaultNameConversion,还有一个是UnderlinedNameConversion,下划线风格的,
        UnderlinedNameConversion nc = new UnderlinedNameConversion();
// 最后,创建一个SQLManager,DebugInterceptor 不是必须的,但可以通过它查看sql执行情况
        SQLManager sqlManager = new SQLManager(mysql, loader, source, nc, new Interceptor[]{new DebugInterceptor()});


//使用内置的生成的sql 新增用户,如果需要获取主键,可以传入KeyHolder
        User user = new User();
        user.setAge(19);
        user.setName("xiandafu");
        sqlManager.insert(user);

//使用内置sql查询用户
        int id = 1;
        user = sqlManager.unique(User.class, id);

//模板更新,仅仅根据id更新值不为null的列
        User newUser = new User();
        newUser.setId(1);
        newUser.setAge(20);
        sqlManager.updateTemplateById(newUser);

//模板查询
        User query = new User();
        query.setName("xiandafu");
        List<User> list = sqlManager.template(query);
        System.out.println(list);

//Query查询
//        Query userQuery = sqlManager.getQuery(User.class);
//        List<User> users = userQuery.lambda().andEq(User::getName, "xiandafy").select();

//使用user.md 文件里的select语句,参考下一节。
        User query2 = new User();
        query.setName("xiandafu");
        List<User> list2 = sqlManager.select("user.select", User.class, query2);
        System.out.println(list2);

// 这一部分需要参考mapper一章
//        UserDao dao = sqlManager.getMapper(UserDao.class);
//        List<User> list3 = dao.select(query2);
    }
}

控制台输出:

BeetlSQL 运行在 product=false,md charset=UTF-8
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
┏━━━━━ Debug [user._gen_insert] ━━━
┣ SQL:   insert into `user` (`name`,`age`,`create_date`) VALUES (?,?,?)
┣ 参数:  [xiandafu, 19, null]
┣ 位置:  com.example.utils.Tools.main(Tools.java:33)
┣ 时间:  23ms
┣ 更新:  [1]
┗━━━━━ Debug [user._gen_insert] ━━━

┏━━━━━ Debug [user._gen_selectById] ━━━
┣ SQL:   select * from `user` where `id` = ?
┣ 参数:  [1]
┣ 位置:  com.example.utils.Tools.main(Tools.java:37)
┣ 时间:  5ms
┣ 结果:  [User(id=1, age=20, name=xiandafu, createDate=null)]
┗━━━━━ Debug [user._gen_selectById] ━━━

┏━━━━━ Debug [user._gen_updateTemplateById] ━━━
┣ SQL:   update `user` set `age`=? where `id` = ?
┣ 参数:  [20, 1]
┣ 位置:  com.example.utils.Tools.main(Tools.java:43)
┣ 时间:  4ms
┣ 更新:  [1]
┗━━━━━ Debug [user._gen_updateTemplateById] ━━━

┏━━━━━ Debug [user._gen_selectByTemplate] ━━━
┣ SQL:   select * from `user` where 1=1 and `name`=? 
┣ 参数:  [xiandafu]
┣ 位置:  com.example.utils.Tools.main(Tools.java:48)
┣ 时间:  3ms
┣ 结果:  [2]
┗━━━━━ Debug [user._gen_selectByTemplate] ━━━

[User(id=1, age=20, name=xiandafu, createDate=null), User(id=2, age=19, name=xiandafu, createDate=null)]
┏━━━━━ Debug [user.select] ━━━
┣ SQL:   select * from user where 1=1 
┣ 参数:  []
┣ 位置:  com.example.utils.Tools.main(Tools.java:58)
┣ 时间:  4ms
┣ 结果:  [2]
┗━━━━━ Debug [user.select] ━━━

[User(id=1, age=20, name=xiandafu, createDate=null), User(id=2, age=19, name=xiandafu, createDate=null)]

Process finished with exit code 0
相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
6月前
|
运维 Linux Windows
【帕鲁更新攻略】如何快速在阿里云上更新游戏服务端版本
幻兽帕鲁游戏服务端版本升级后,需要玩家同步更新才能继续游戏,您可以按照以下操作完成游戏服务端升级。
47703 840
【帕鲁更新攻略】如何快速在阿里云上更新游戏服务端版本
|
JavaScript Java 区块链
经常忘记网址?将Vue项目一键打包为桌面客户端 十分钟让你解决烦恼(一)
经常忘记网址?将Vue项目一键打包为桌面客户端 十分钟让你解决烦恼
196 0
|
JavaScript 应用服务中间件 网络安全
经常忘记网址?将Vue项目一键打包为桌面客户端 十分钟让你解决烦恼
本文讲解了如何将一个Vue项目打包为桌面客户端,实现像Excel一样双击运行,适用于管理较多项目且经常忘记网址的场景。本文还讲解了 Vue 项目从下载依赖、打包和Nginx部署的全过程,可以给开发者参考学习。
11880 3
|
资源调度 JavaScript 前端开发
【GSAP3教程】初次上手GSAP3
【GSAP3教程】初次上手GSAP3
687 0
|
JavaScript 应用服务中间件 网络安全
经常忘记网址?将Vue项目一键打包为桌面客户端 十分钟让你解决烦恼(二)
经常忘记网址?将Vue项目一键打包为桌面客户端 十分钟让你解决烦恼
184 0
|
安全 Java 关系型数据库
新手初次使用服务器遇到的坑及解决方案
1.第一次在服务器上部署网站,外网无法访问 2.安全组开了端口后,依然无法访问 3.服务器上的数据库无法远程连接
540 0
新手初次使用服务器遇到的坑及解决方案
|
网络协议 数据安全/隐私保护
阿里云初次使用经历
第一次使用阿里云的整个过程
阿里云初次使用经历
初次上线服务器
发布了个人博客项目,与人分享快乐
初次上线服务器
|
存储 前端开发 Ubuntu
初次使用阿里云完成一个小项目的体验
作为一个非编程专业的学生,使用阿里云服务器对我的帮助很大,以下是我使用阿里云过程中的一些体验
初次使用阿里云完成一个小项目的体验
|
运维 算法 IDE
阿里云机器初次使用体验
试用了阿里云的学生机,感觉还不错,分享一下感受和想法