上一页 1 2 3 4 5 6 7 8 ··· 16 下一页
摘要: MySQL 数据类型 MySQL 中定义数据字段的类型对你数据库的优化是非常重要的。 MySQL 支持多种类型,大致可以分为三类:数值、日期/时间和字符串(字符)类型。 数值类型 MySQL 支持所有标准 SQL 数值数据类型。 这些类型包括严格数值数据类型(INTEGER、SMALLINT、DEC 阅读全文
posted @ 2022-03-24 15:40 o小兵o 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 1.模块安装 npm install crypto-js 2.新建插件secret.js import CryptoJS from 'crypto-js' // 默认的 KEY 与 iv 如果没有给 const KEY = CryptoJS.enc.Utf8.parse("1234567890123 阅读全文
posted @ 2022-01-11 17:04 o小兵o 阅读(4194) 评论(0) 推荐(0) 编辑
摘要: 1、mysql 5.7 下载链接 2、上传到服务器并解压 [root@xiaobing software]# ls jdk1.8 mysql-5.7.34-linux-glibc2.12-x86_64.tar.gz //解压 [root@xiaobing software]# tar -zxvf m 阅读全文
posted @ 2022-01-06 21:22 o小兵o 阅读(885) 评论(0) 推荐(0) 编辑
摘要: 什么是Nginx服务器一个高性能的HTTP和反向代理web服务器 1.nginx下载 2.上传 //上传 [root@xiaobing software]# rz -E rz waiting to receive. [root@xiaobing software]# ls nginx-1.13.7. 阅读全文
posted @ 2022-01-06 17:58 o小兵o 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1.Xshell登录 //查看当期ID [root@iZ2zejd4dt5hnza7upmZ /]# hostname iZ2zejd4dt5hnza7upmZ //修改展示名为xiaobing [root@iZ2zejd4dt5hnza7upmZ /]# hostnamectl set-hostn 阅读全文
posted @ 2022-01-06 16:12 o小兵o 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 废话不多说上代码: <template> <el-table v-if="tableData.length > 0" :data="tableData" max-height="100%" style="width: 100%" :header-cell-style="{ background: ' 阅读全文
posted @ 2021-12-21 11:26 o小兵o 阅读(589) 评论(0) 推荐(0) 编辑
摘要: 1.新建拦截器配置类: WebMvcConfigurer import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import o 阅读全文
posted @ 2021-12-14 11:08 o小兵o 阅读(207) 评论(0) 推荐(0) 编辑
摘要: package com.xiaobing; import java.lang.reflect.Method; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public cla 阅读全文
posted @ 2021-11-26 11:31 o小兵o 阅读(503) 评论(0) 推荐(0) 编辑
摘要: 1、首先清除 C:\Users\Administrator\AppData\Roaming\Microsoft\Crypto\RSA 目录下所有文件(首次安装fiddler请忽略) 2、清除电脑上的根证书,WIN+R快捷键,输入:certmgr.msc, 然后回车,查找所有fiddler证书,然后删 阅读全文
posted @ 2021-11-24 15:47 o小兵o 阅读(554) 评论(0) 推荐(0) 编辑
摘要: 1.创建新用户 'xiaoxiao'密码'123456' mysql> CREATE USER 'xiaoxiao'@'localhost' IDENTIFIED BY '123456'; 2.问题:Navicat使用xiaoxiao链接,看不到新建的数据库testDB怎么办? //用户添加使用te 阅读全文
posted @ 2021-11-05 11:22 o小兵o 阅读(339) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页