摘要:
本文转载:https://blog.csdn.net/qq_39071667/article/details/88866038 因工作需要,学习redis 找了很多资料..都不是很全面..我这里借鉴一下前人写好的资源整合一下.. 1、set(K key, V value) 新增一个字符串类型的值,k 阅读全文
摘要:
本文转载自:https://www.cnblogs.com/wangying222/p/5757327.html 比如 1 Double d = new Double("1234567890.12"); 2 System.out.println("d:="+d); 3 java.text.Numbe 阅读全文
摘要:
java中的定时任务, 使用java实现有3种方式: 1, 使用普通thread实现 @Test public void test1() { // 单位: 毫秒 final long timeInterval = 1000; Runnable runnable = new Runnable() { 阅读全文
摘要:
前言 最近几年,越来越多的网站开始提供部分对网页链接、文章或问题进行投票的功能,这些网站会根据文章的发布时间和文章获得的投票数量计算出一个评分,然后按照这个评分来决定如何排序和展示文章。 一、Springboot整合redis https://www.cnblogs.com/minmin123/p/ 阅读全文
摘要:
本项目基于springboot+ spring-boot-starter-data-redis 简单的boot demo可以参考:SpringBoot实战基础搭建 先看下项目结构: redis.jpg boot整合redis只需要在pom加入 <dependency> <groupId>org.sp 阅读全文
摘要:
Redis 的数据结构简介 1、redis 中的字符串 127.0.0.1:6379> set hello1 world OK 127.0.0.1:6379> get hello1 "world" 127.0.0.1:6379> del hello1 (integer) 1 127.0.0.1:63 阅读全文
摘要:
本文转自:https://blog.csdn.net/qq_22182989/article/details/103728781 trigger: 'blur' blur失去焦点 比如输入框里。校验文本框是否为空 trigger: 'change' change数据改变 比如 下图这些。需要手动选择 阅读全文
摘要:
错误描述: 1 vue.esm.js?efeb:591 [Vue warn]: Unknown custom element: <el-container> - did you register the component correctly? For recursive components, m 阅读全文
摘要:
1、新建一个类,实现WebMvcConfigurer 1 import org.springframework.context.annotation.Configuration; 2 import org.springframework.web.servlet.config.annotation.C 阅读全文
摘要:
1、初始化创建一个vue项目: 打开终端输入命令 vue init webpack vueui ? Project name mydemovue # => 项目名称 ? Project description A Vue.js project # => 项目描述 ? Author malun <ma 阅读全文