上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 一,postman截图: 二,java代码: package com.cxqy.officialserver.dto.personalsub;import com.alibaba.fastjson.JSONArray;import com.alibaba.fastjson.JSONObject;/* 阅读全文
posted @ 2022-06-14 17:12 风骚羊肉串 阅读(242) 评论(0) 推荐(0) 编辑
摘要: use stu;drop table if exists student;create table student ( s_id int(11) not null auto_increment , sno int(11), sname varchar(50), sage int(11), ssex 阅读全文
posted @ 2022-06-13 16:14 风骚羊肉串 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 如商品订单信息表 查询需要信息并做模糊处理查询: selectt.goods_order_id orderId,t.goods_id goodsId,t.goods_spe_id speId,t.goods_order_no orderNumber,t.number orderGoodsNum,JS 阅读全文
posted @ 2022-06-13 15:28 风骚羊肉串 阅读(265) 评论(0) 推荐(0) 编辑
摘要: Mysql索引管理 1、功能 #1. 索引的功能就是加速查找 #2. mysql中的primary key,unique,联合唯一也都是索引,这些索引除了加速查找以外,还有约束的功能 2、MySQL的索引分类 索引分类 1.普通索引index :加速查找 2.唯一索引 主键索引:primary ke 阅读全文
posted @ 2022-03-23 15:23 风骚羊肉串 阅读(44) 评论(0) 推荐(0) 编辑
摘要: windows电脑重装系统,去官网下载了最新的git安装,一路next下来,打开bash按老路子设置,生成公钥 git config --global user.name "yourname" git config --global user.email "your@email.com" ssh-k 阅读全文
posted @ 2022-03-17 19:20 风骚羊肉串 阅读(1343) 评论(0) 推荐(1) 编辑
摘要: 查看mysql数据库隔离级别 8.0版本前: SELECT @@tx_isolation; 8.0版本后需要使用: SELECT @@transaction_isolation; 脏读(Dirty read): 当一个事务正在访问数据并且对数据进行了修改,而这种修改还没有提交到 数据库中,这时另外一 阅读全文
posted @ 2022-02-18 11:55 风骚羊肉串 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 实体类vo: package com.cxqy.activity.dto;import lombok.Data;import org.codehaus.jackson.annotate.JsonIgnore;import org.codehaus.jackson.annotate.JsonIgnor 阅读全文
posted @ 2022-01-21 17:28 风骚羊肉串 阅读(235) 评论(0) 推荐(0) 编辑
摘要: package com.cxqy.activity.dto.nyactivity;import javax.imageio.ImageIO;import java.awt.image.BufferedImage;import java.io.File;/** * @Author yjl * @Dat 阅读全文
posted @ 2022-01-10 15:57 风骚羊肉串 阅读(203) 评论(0) 推荐(0) 编辑
摘要: List<PostSchoolResp> postList = newYearActivityMapper.getPostList(topicIdList, activity.getStartTime(), activity.getEndTime(),1);List<PostSchoolResp> 阅读全文
posted @ 2022-01-07 16:41 风骚羊肉串 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 分布式架构是什么? 分布式服务顾名思义服务是分散部署在不同的机器上的,一个服务可能负责几个功能,是一种面向SOA架构的,服务之间也是通过rpc来交互或者是webservice来交互的。逻辑架构设计完后就该做物理架构设计,系统应用部署在超过一台服务器或虚拟机上,且各分开部署的部分彼此通过各种通讯协议交 阅读全文
posted @ 2021-12-31 15:24 风骚羊肉串 阅读(109) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页