首先是写一个注解类: import java.lang.annotation.Retention;import java.lang.annotation.Target; import static java.lang.annotation.ElementType.METHOD;import stat ...
分类:
编程语言 时间:
2021-01-30 11:43:21
阅读次数:
0
全局匿名和用户节流: # 限流 'DEFAULT_THROTTLE_CLASSES': [ 'rest_framework.throttling.AnonRateThrottle', 'rest_framework.throttling.UserRateThrottle' ], 'DEFAULT_T ...
分类:
其他好文 时间:
2021-01-30 11:42:33
阅读次数:
0
坐标函数 https://www.geogebra.org/graphing https://www.desmos.com/calculator 通用画图,简易Visio https://c.runoob.com/more/shapefly-diagram/ ...
分类:
Web程序 时间:
2021-01-29 12:08:03
阅读次数:
0
在 web.xml 中配置一个字符集过滤器即可 <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilt ...
分类:
编程语言 时间:
2021-01-27 13:08:28
阅读次数:
0
一、参考文档 1、官方文档 http://logback.qos.ch/documentation.html 2、博客文档 http://www.cnblogs.com/warking/p/5710303.html 二、logback.xml常用配置详解 常用节点结构图: 1、根节点<configu ...
分类:
其他好文 时间:
2021-01-26 12:09:45
阅读次数:
0
Chapter 4 - Clustering Models Segment 3 - DBSCan clustering to identify outliers DBSCAN for Outlier Detection Unsupervised method that clusters core s ...
分类:
数据库 时间:
2021-01-26 11:57:37
阅读次数:
0
相比起暴力解法,前缀树可以实现空间换时间。将多个 small 构建为一棵前缀树,在树上遍历一次 big 。可替代用每个 small 与 big 比对。 JAVA: private class Trie { boolean isEnd; Trie[] childs; int num; int flag ...
分类:
其他好文 时间:
2021-01-22 12:17:01
阅读次数:
0
整体分发流程 Android Input Framework 这篇详细讲解了触摸事件从硬件分发到Activity之前的过程。 graph TD; a(Input Hardware)-->b(Kernel/Driver); b-->c(EventHub); c-->d(InputReader); d- ...
分类:
移动开发 时间:
2021-01-22 12:02:30
阅读次数:
0
System.Windows.Forms.Application.Restart();方法系统实现自动重启。 if (FrmDialog.ShowDialog(this, "确定退出登录吗?", "提示", false, false, false, null, DialogType.YesNo) = ...
分类:
移动开发 时间:
2021-01-22 11:52:41
阅读次数:
0
一、开发模式 1、前后端不分离 前后端放在一块写 2、前后端分离 2.1、前端开发 2.2、后端开发 为前端提供API开发 永远返回HttpResponse 3、Django FBV、 CBV 3.1、FBV def users(request): if request.method == 'GET ...
分类:
其他好文 时间:
2021-01-21 10:44:00
阅读次数:
0