首先要写一个自己的拦截器,实现HandlerInterceptor接口,并且实现接口中的三个方法,同时添加 @Component 注解,把自己的拦截器放入容器 中管理,方便以后的注入使用。 @Component public class MyIntercepor implements Handler ...
分类:
编程语言 时间:
2020-05-01 18:42:01
阅读次数:
67
8255A可编程外围设备接口 (programmable perphheral interface,PPI)是一种通用的可编程并行I/O接口器件。它可以作为Intel系列微处理器或其它系列微处理器的接口器件,可以将任何与TTL兼容的I/O设备与微处理器连接。在与主频不高于8MHz的微处理器一起工作时 ...
分类:
其他好文 时间:
2020-05-01 16:51:16
阅读次数:
409
1、IDEA控制台乱码 (1)在书写普通的java程序输出中文的时候,不会出现控制台乱码的问题: public class Test { public static void main(String[] args) { System.out.println("劳动光荣"); } } 劳动光荣 (2) ...
分类:
编程语言 时间:
2020-05-01 14:20:49
阅读次数:
61
安装 基本配置 webpack打包出来的文件解析 修改了webapck.config.js 名字webpack.configmy.js 开启本地服务,添加localhost,配置html模板和压缩html webpack plugin css处理 转化es6 ...
分类:
Web程序 时间:
2020-05-01 12:19:49
阅读次数:
80
[TOC] 项目虚拟环境配置 虚拟环境配置: 配置指定的虚拟环境: pip 换源配置: ...
分类:
其他好文 时间:
2020-04-30 19:38:30
阅读次数:
67
首先看下ThinkPHP6官方手册关于多应用的目录结构: ├─app 应用目录 │ ├─index 主应用 │ │ ├─controller 控制器目录 │ │ ├─model 模型目录 │ │ ├─view 视图目录 │ │ ├─config 配置目录(优先) │ │ └─ ... 更多类库目录 ...
分类:
Web程序 时间:
2020-04-30 17:49:06
阅读次数:
93
不修改系统配置也不设置session sql mode 的情况下,绕过only_full_group_by限制
分类:
数据库 时间:
2020-04-30 17:32:13
阅读次数:
78
原文地址:https://www.cnblogs.com/powerwu/articles/8480203.html (error) DENIED Redis is running in protected mode because protected mode is enabled Redis p ...
分类:
其他好文 时间:
2020-04-30 15:55:44
阅读次数:
96
tp5 给的whereOr方法在不仔细阅读文档的情况下会遇到一些问题 先看下代码: $this->modelLineModel->where('status',1)->whereOr(['area1_id'=>2341,'area2_id'=>2])->select(); 想着应该是whereOr里 ...
分类:
其他好文 时间:
2020-04-30 15:08:56
阅读次数:
322
1、定义一个点类Point,包含2个成员变量x、y分别表示x和y坐标,2个构造器Point()和Point(intx0,y0),以及一个movePoint(int dx,int dy)方法实现点的位置移动,创建两个Point对象p1、p2,分别调用movePoint方法后,打印p1和p2的坐标。[必 ...
分类:
其他好文 时间:
2020-04-30 13:34:32
阅读次数:
44