摘要: 导入pom <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.3.1.tmp</version> </dependency> mysql 阅读全文
posted @ 2020-12-31 10:54 告一段落 阅读(70) 评论(0) 推荐(0) 编辑
摘要: mybatis 中文官网 https://mybatis.org/mybatis-3/zh/index.html GAV <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5 阅读全文
posted @ 2020-12-31 10:52 告一段落 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 跳转至有道云查看 跳转至有道云 阅读全文
posted @ 2020-12-31 10:43 告一段落 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 跳转至有道云查看 跳转至有道云 阅读全文
posted @ 2020-12-31 10:36 告一段落 阅读(27) 评论(0) 推荐(0) 编辑
摘要: python操作mysql import pymysql import prettytable as pt # 连接mysql查看版本 db = pymysql.connect('localhost','root','root','pyspark') cursor = db.cursor() cur 阅读全文
posted @ 2020-12-29 17:04 告一段落 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 一个最简单的爬虫 from urllib.request import urlopen url = 'http://www.baidu.com' # 发送请求 response = urlopen(url) # 读取内容 info = response.read() # 打印内容 #print(in 阅读全文
posted @ 2020-12-27 22:10 告一段落 阅读(56) 评论(0) 推荐(0) 编辑
摘要: pyspark读取csv文本保存至MySQL案例 我们在使用spark处理完数据时,经常要将处理好的结果数据保存的如mysql等关系型数据库中,下面我们通过一个示例说明如何将spark处理好的数据保存到mysql中 csv文件如下 文件student.csv id,name,age 1,张三,23 阅读全文
posted @ 2020-12-24 22:29 告一段落 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 通常在Springboot项目开发完,我们需要在服务器上部署,那么该如何打包这些呢,需要在pom文件中加入springboot的打包依赖。 <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifact 阅读全文
posted @ 2020-12-22 23:43 告一段落 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 使用renren-fast快速开发平台搭建后台管理系统 使用git下载项目 # 后台项目 git clone https://gitee.com/renrenio/renren-fast.git #前端项目 git clone https://gitee.com/renrenio/renren-fa 阅读全文
posted @ 2020-12-12 22:36 告一段落 阅读(103) 评论(0) 推荐(0) 编辑
摘要: gulimall_oms drop table if exists oms_order; drop table if exists oms_order_item; drop table if exists oms_order_operate_history; drop table if exists 阅读全文
posted @ 2020-12-11 18:27 告一段落 阅读(105) 评论(0) 推荐(0) 编辑