读卡器:ACR122U,主机环境:ubuntu 20.00 1.apt install libnfc-bin 2.apt install libpcsclite1 3.apt install vim 4.vi /etc/modprobe.d/blacklist-libnfc.conf 在文件尾增加: ...
分类:
编程语言 时间:
2020-11-17 12:28:21
阅读次数:
10
进程间通讯测试 from multiprocessing import Process,Pipe,Queue def read_pipe(output,input): output_p,input_p = output,input while True: try: output_p.recv() e ...
分类:
系统相关 时间:
2020-11-16 14:00:24
阅读次数:
23
Swagger-UI简介 Swagger-UI Swagger-UI是HTML, Javascript, CSS的一个集合,可以动态地根据注解生成在线API文档。 常用注解 @Api:用于修饰Controller类,生成Controller相关文档信息 @ApiOperation:用于修饰Contr ...
分类:
编程语言 时间:
2020-11-16 13:40:39
阅读次数:
13
1 RABC权限管理 1.1 表关系分析 1.2 表设计 1.2.1 用户表 账号、姓名、邮箱、添加时间、最后登录时间、账号是否禁止登录 1.2.2 角色表 商品管理员、订单管理员、超级管理员 1.2.3 资源列表 储存是路径正则 资源分类:商品模块、订单模块、营销模块、权限模块、内容模块、其他模块 ...
分类:
其他好文 时间:
2020-11-16 13:37:04
阅读次数:
7
Exception 分两种: 编译时异常和RuntimeException. 编译时异常必须要处理。 异常处理的五个关键字:throw,throws,try..catch,finally 1.使用throw抛出异常: NullPointerException和 ArrayIndexOutOfBoun ...
分类:
其他好文 时间:
2020-11-16 13:11:27
阅读次数:
3
@GetMapping("/selectIp") public HashMap<String, String> selectIp() { String ipHostAddress = ""; try { Enumeration<NetworkInterface> allNetInterfaces = ...
分类:
编程语言 时间:
2020-11-16 13:09:14
阅读次数:
9
publicstaticvoidmain(String[]args){Datedate=newDate();//创建日期对象//2020/11/416:01:22//使用DateFormat的子类SimpleDateFormat/**G--》代表年代*y--》年*M-->月*m--》分钟*d--》一月中的第几天*D--》一年中的第几天*h--》12小时值*H--》24小时值*s--》秒*S-
分类:
其他好文 时间:
2020-11-16 13:08:20
阅读次数:
4
Docker06-仓库 仓库介绍 仓库(Repository)是集中存放镜像的地方,仓库分为公开仓库和私有仓库两种形式。 最大的公开仓库是 Docker Hub,存放了数量庞大的镜像供用户下载。 Docker Hub:https://hub.docker.com/ 在国内,阿里云和163也有提供公开 ...
分类:
其他好文 时间:
2020-11-13 13:12:50
阅读次数:
20
本文对try-with-resources语法进行了较为深入的剖析,验证了其为一种语法糖,同时给出了其实际的实现方式的反编译结果,相信你在看完本文后,关于AutoCloseable的使用你会有新的收获。
分类:
编程语言 时间:
2020-11-13 12:29:50
阅读次数:
6
1.编译时异常 2.运行时异常 不处理异常 package cn.yang37.exception; /** * @Class: Demo1 * @Author: Yiang37 * @Date: 2020/10/14 23:37 * @Description: */ public class De ...
分类:
编程语言 时间:
2020-11-12 14:18:54
阅读次数:
10