参数说明 redis 配置文件说明: #redis.conf # Redis configuration file example. # ./redis-server /path/to/redis.conf ################################## INCLUDES ## ...
分类:
其他好文 时间:
2020-07-23 16:34:28
阅读次数:
56
一:创建模板 二:图表Docment构建 public Document chart() { var doc = new Document(); var builder = new DocumentBuilder(doc); var shape = builder.InsertChart(Aspos ...
分类:
Web程序 时间:
2020-07-22 15:46:44
阅读次数:
95
一、分页查询 因为PagingAndSortingRepository,我们总是可以传入Sort和Pageable对查询结果进行排序和分页(支持命名查询、Example查询和Query查询)。 // 当查询方法中有多个参数的时候,Pageable/Sort建议做为最后一个参数传入 @Query("s ...
分类:
编程语言 时间:
2020-07-22 11:10:55
阅读次数:
237
1、定义 Service package com.example.scangundemo_as; import android.app.ActivityManager; import android.app.Service; import android.content.ComponentName; ...
分类:
移动开发 时间:
2020-07-21 22:26:20
阅读次数:
106
import { createMachine, assign, interpret } from "xstate"; const elBox = document.querySelector("#box"); const elBody = document.body; const assignPoi ...
分类:
Web程序 时间:
2020-07-21 22:21:20
阅读次数:
88
https://www.techopedia.com/definition/21300/pci-mezzanine-card-pmc https://whatis.techtarget.com/definition/mezzanine 服务器主板上,有mezz插槽 mezz是mezzanine的缩写 ...
分类:
其他好文 时间:
2020-07-21 21:29:12
阅读次数:
130
:root { --bg-color: white; /*change background*/ --text-color: black; /*change text color*/ --md-char-color: #C7C5C5; /*change color of meta characetr ...
分类:
其他好文 时间:
2020-07-21 00:59:10
阅读次数:
457
mysql的文件系统 1.mysql提供的存储引擎 01)InnoDB 适合数据增删改查 02)MyISAM 存储一些只读的数据 03)MEMORY 支持hash索引 04)ARCHIVE 05)FEDERATED 06)EXAMPLE 07)BLACKHOLE 08)MERGE 09)NDBCLU ...
分类:
数据库 时间:
2020-07-20 22:53:18
阅读次数:
113
Given a string S, return the number of substrings of length K with no repeated characters. Example 1: Input: S = "havefunonleetcode", K = 5 Output: 6 ...
分类:
其他好文 时间:
2020-07-20 10:52:27
阅读次数:
55
package example.java; /** * @author 杜科 * @description 简单动态字符串,非线程安全。采取类似buffer的设计,使其成为一个可以方便重用的StringBuilder * @contact AllenDuke@163.com * @date 2020 ...
分类:
其他好文 时间:
2020-07-19 23:18:33
阅读次数:
92