自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (2)
  • 收藏
  • 关注

原创 递归函数转非递归(通用方法)

转换思路https://zhuanlan.zhihu.com/p/151322731https://zhuanlan.zhihu.com/p/151380432举例以斐波拉契数列生成为例,典型的递归版本如下int fibonacci(int n) { if (n == 0 || n == 1) { return 1; } else { return fibonacci(n - 1) + fibonacci(n - 2)

2020-06-28 21:24:13 1640 1

原创 2020尚硅谷-谷粒商城(02)分布式环境搭建

分布式解决方案nacos 配置中心、注册中心ribbon 负载均衡openfeign rpc调用sentinel 流量控制、熔断gateway api网关sleuth 调用链监控seata 分布式事务nacos简单配置在 common 模块中,导入nacos 相关依赖。这样各个微服务模块都可以使用。配置文件改为 bootstrap.yml 其中只写服务名称、端口、环境、nacos 地址spring: profiles: active: dev # 环境 cloud:

2020-05-30 14:11:08 666

原创 [人人开源]微服务项目的后台管理系统

目录利用 renren-generator 自动生成增删改查代码使用 renren-fast 和 renren-fast-vue 构建管理系统简单 vue 页面展示利用 renren-generator 自动生成增删改查代码确保数据库建库、建表完成。建议在建表时加上 comment 注释,自动生成的crud代码、vue文件都会带上表中的注释。# 建表时,字段加上注释member_username varchar(200) comment '用户名'# 建表后,对表加上注释

2020-05-14 17:46:18 1655

原创 vscode 快速生成vue代码块

文件 - 首选项 - 用户代码片段输入 vue ,粘贴如下 json{ "vue模板": { "prefix": "vue", "body": [ "<template>", "<div></div>", "</template&gt...

2020-05-07 21:51:01 448

原创 2020尚硅谷-谷粒商城(01)项目搭建

2020尚硅谷-谷粒商城(01)项目搭建

2020-05-05 21:30:57 1735

原创 IntelliJ IDEA 编译输出改为英文 运行信息改为英文

成果图:修改方法:改了三处地方,具体哪里生效了我也不清楚…一。增加环境变量 JAVA_TOOL_OPTIONS ,值为 -Duser.language=en二。ideaJ中修改编译器参数。见图三。修改ideaJ,bin目录下VM配置文件参数,增加 -Duser.language=en 一行最后重启ideaJ...

2019-04-27 10:21:48 6414 4

原创 Java 把画图和投屏分开 不用双缓冲解决屏幕闪烁问题

投屏模块——MyCanvas类运用里面的getImageAndPrintIt(BufferedImage bufferedImage)方法实现投屏,bufferedImage是提前画好的图片。也就是说,只让Canvas实现投屏功能,把画图功能分离出去。package madokast;import java.awt.*;import java.awt.image.Buffere...

2018-12-29 12:09:47 562

原创 理解海明码

今天做题遇到了海明码,网上相关知识很多,可惜大多都要把知识点看透才能明白海明码到底是什么,这里我整理自己的学习过程和理解。海明码初步首先海明码是一种校检码,数位中包括数据位和校检位,是奇偶校检码的升级。假设读者对奇偶校检码很熟悉,它只能指出某组数据是否出错,但是无法确定出错的位置。海明码则通过多增加几个奇偶校检位,相互关联,进而找出出错的位置。当然以上分析都假定出错只会发生一次,也就是说一组...

2018-11-19 22:36:56 359 1

2020尚硅谷 谷粒商城 建表sql语句

gulimall_pms 商品 drop table if exists pms_attr; drop table if exists pms_attr_attrgroup_relation; drop table if exists pms_attr_group; drop table if exists pms_brand; drop table if exists pms_category; drop table if exists pms_category_brand_relation; drop table if exists pms_comment_replay; drop table if exists pms_product_attr_value; drop table if exists pms_sku_images; drop table if exists pms_sku_info; drop table if exists pms_sku_sale_attr_value; drop table if exists pms_spu_comment; drop table if exists pms_spu_images; drop table if exists pms_spu_info; drop table if exists pms_spu_info_desc; /*==============================================================*/ /* Table: pms_attr */ /*==============================================================*/ create table pms_attr ( attr_id bigint not null auto_increment comment '属性id', attr_name char(30) comment '属性名', search_type tinyint comment '是否需要检索[0-不需要,1-需要]', icon varchar(255) comment '属性图标', value_select char(255) comment '可选值列表[用逗号分隔]', attr_type tinyint comment '属性类型[0-销售属性,1-基本属性,2-既是销售属性又是基本属性]', enable bigint comment '启用状态[0 - 禁用,1 - 启用]', catelog_id bigint comment '所属分类', show_desc tinyint comment '快速展示【是否展示在介绍上;0-否 1-是】,在sku中仍然可以调整', primary key (attr_id) ); alter table pms_attr comment '商品属性'; /*==============================================================*/ /* Table: pms_attr_attrgroup_relation */ /*==============================================================*/ create table pms_attr_attrgroup_relation ( id bigint not null auto_increment comment 'id', attr_id bigint comment '属性id', attr_group_id bigint comment '属性分组id', attr_sort int comment '属性组内排序', primary key (id) ); alter table pms_attr_attrgroup_relation comment '属性&

2020-05-05

head first networking(英文,全彩非影印)

来自http://www.allitebooks.com Frustrated with networking books so chock-full of acronyms that your brain goes into sleep mode? Head First Networking’s unique, visually rich format provides a task-based approach to computer networking that makes it easy to get your brain engaged. You’ll learn the concepts by tying them to on-the-job tasks, blending practice and theory in a way that only Head First can. With this book, you’ll learn skills through a variety of genuine scenarios, from fixing a malfunctioning office network to planning a network for a high-technology haunted house. You’ll learn exactly what you need to know, rather than a laundry list of acronyms and diagrams

2019-03-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除