- 博客(22)
- 收藏
- 关注
原创 mybatis-plus快速入门
MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。官网:mybatis-plus官网1.创建user表及插入数据CREATE TABLE user( id BIGINT(20) NOT NULL COMMENT '主键ID', name VARCHAR(30) NULL DEFAULT NULL COMMENT '姓名', age INT(11) NULL DEFAULT NULL COMMENT
2020-08-16 10:59:27 258
原创 mac安装nginx
本篇博客在mac系统上使用brew安装nginx,没有安装brew可以参考我的上上篇博客。1.安装nginxbrew install nginx2. 查看nginx版本nginx -v3.进入nginx安装目录/usr/local/Cellar/nginx/1.19.14.启动nginxnginx5.访问8080端口http://localhost:8080/6.停止nginxnginx -s stop...
2020-08-09 21:20:30 100
原创 mac系统安装kafka
本文采用homebrew安装kafka,如果还未安装homebrew,请参考我的上篇博客homebrew安装安装zookeeperbrew install zookeeper默认安装位置启动文件: /usr/local/Cellar/zookeeper/3.5.8/bin/配置文件: /usr/local/etc/zookeeper/启动zookeeper 服务zookeeper-server-start /usr/local/etc/kafka/zookeeper.properti
2020-07-25 20:50:12 419
原创 mac系统安装homebrew
脚本说明Homebrew默认安装脚本:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"如果你等待一段时间之后遇到下面提示,就说明无法访问官方脚本地址:curl: (7) Failed to connect to raw.githubusercontent.com port 443: Operation timed out请使用下面的脚本:/u.
2020-07-25 20:39:21 202
原创 Spring IoC入门
本文讲解基于注解的Spring IoC容器。IoC(Inversion of Control)即控制反转,是一种通过描述来生成或者获取对象的技术,是Spring的核心理念之一。在Spring中把每一个需要管理的对象称为Spring Bean(简称Bean),而Spring管理这些Bean的容器,被我们称为Spring IoC容器(简称IoC容器)它是一个管理Bean的容器。IoC容器需要具备两个基本的功能:1.通过描述管理Bean,包括发布和获取Bean。2.通过描述完成Bean之间的依赖关系。下
2020-07-17 19:54:53 95
原创 java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed
在连接数据库的url中,加上allowPublicKeyRetrieval=true
2020-07-14 07:58:27 185
原创 MyBatis模糊查询
在MyBatis入门案例基础上,本篇文章实现模糊查询。UserDaopublic interface UserDao { //模糊查询 List<User> getUserLike(String value);}UserMapper.xml<select id="getUserLike" parameterType="String" resultType="com.pojo.User"> select * from user wh
2020-06-21 10:28:13 136
原创 MyBatis基于XML的增删改查
在MyBatis入门案例中,实现了查询操作,这篇文章使用XML方式实现增删改查,这里贴出关键部分。工程目录结构UserDaopublic interface UserDao { List<User> getUserList(); User getUserById(int id); int addUser(User user); int updateUser(User user); int deleteUser(int id);}
2020-06-20 21:34:56 893
原创 MyBatis入门案例
MyBatis官网:https://mybatis.org/mybatis-3/zh/index.html本次入门案例使用MyBatis实现查询操作。首先创建一个Maven工程,工程目录结构如下。其中,MyBatis-demo是一个父工程,在父工程的pom.xml文件中导入坐标依赖,然后创建一个模块mybatis-01。<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/
2020-06-20 20:32:20 126
原创 Vue用echarts绘制雷达图
最近在学习Vue绘制雷达图,写个博客记录下经验。1. 在vue项目中安装echarts插件 cnpm install echarts --save2. main.js文件下添加 import echarts from 'echarts' Vue.prototype.$echarts = echarts3. 在vue文件中编写<div id="leiDaTu" class...
2020-05-07 16:55:56 4067 2
原创 VMware Tools 启动脚本未能在虚拟机中成功运行
问题描述:虚拟机 Ubuntu 18.04VMware Tools 继续运行脚本未能在虚拟机中成功运行。如果您在此虚拟机中配置了自定义的继续运行脚本,请确保该脚本没有错误。您也可以提交支持请求,报告此问题。解决方法:root下卸载:sudo vmware-uninstall-tools.pl重新执行vmware-install.pl安装VMware-Tools。重启参考文章:h...
2020-04-08 18:28:09 3065 2
原创 ubuntu18.04安装maven及idea配置maven
下载maven下载链接:点击下载下载.gz文件将安装包移动到/usr/local路径中sudo mv apache-maven-3.5.3-bin.tar.gz /usr/local/进入到/usr/local目录下cd /usr/local将下载的包进行解压:sudo tar -zxvf apache-maven-3.5.3-bin.tar.gzsudo rm -rf ap...
2020-04-08 13:07:47 696
原创 ubuntu18.04安装docker
docker安装1. 更新sudo apt update2. 安装依赖sudo apt install apt-transport-https ca-certificates curl software-properties-common3. 添加Dokcer官方密钥到系统中curl -fsSL https://download.docker.com/linux/ubuntu/gp...
2020-03-25 21:07:59 223
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人