一、基于上节编写基础聊天 GroupChatServer package com.github.bjlhx15.netty.demo.groupchat; import java.io.IOException; import java.net.InetSocketAddress; import ja ...
分类:
其他好文 时间:
2021-07-29 16:18:22
阅读次数:
0
##源码查看小结 使用方式: 1.Web界面,Dashboard(horizon) 2.命令行,cliff 3.API,RESTful API 服务部署:(python: wsgi → application) Apache + mod_wsgi (官方) Nginx + uWSGI API框架: ...
分类:
其他好文 时间:
2021-07-23 17:39:38
阅读次数:
0
直接拖到谷歌浏览器中添加扩展程序 但是在使用 redux-devtools-extension 工具可以看到相应的store参数时需要代码设计 在store.js文件中 //首先安装npm i redux-devtools-extension // 引入reducx-devtools-extensi ...
分类:
其他好文 时间:
2021-07-22 17:33:05
阅读次数:
0
lambda 定义匿名函数 语法: lambda arguments: expression 此函数可以有任意数量的参数,但只能有一个表达式,该表达式将被计算并返回。 一种是在需要函数对象的地方自由使用lambda函数。 它除了在函数中使用其他类型的表达式外,在编程的特定领域也有各种用途。 Exam ...
分类:
编程语言 时间:
2021-07-21 17:36:08
阅读次数:
0
直接上代码: package tools import ( "bytes" "crypto/aes" "crypto/cipher" ) func PKCS5Padding(ciphertext []byte, blockSize int) []byte { padding := blockSize ...
分类:
其他好文 时间:
2021-07-19 16:44:12
阅读次数:
0
Centos下nginx+Modsecurity安装:https://www.jianshu.com/p/93e310e12036https://www.oschina.net/p/modsecurity?hmsr=aladdin1e1http://www.modsecurity.cn/practi ...
分类:
其他好文 时间:
2021-07-12 18:05:16
阅读次数:
0
1.问题描述 maven Install报错: 程序包com.sun.xml.internal.bind.v2.model.core不存在 解决 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compil ...
分类:
其他好文 时间:
2021-07-08 17:44:06
阅读次数:
0
cobra框架使用手册 cobra是go语言的一个库,可以用于编写命令行工具。 概念 Cobra 结构由三部分组成:命令 (commands)、参数 (arguments)、标志 (flags)。最好的应用程序在使用时读起来像句子,要遵循的模式是APPNAME VERB NOUN --ADJECTI ...
分类:
其他好文 时间:
2021-07-07 17:55:53
阅读次数:
0
能实现图片裁剪、缩放、水印等功能,接口调用非常简单: maven引入库: <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dep ...
分类:
编程语言 时间:
2021-06-30 17:54:58
阅读次数:
0
前言: 对于开发、测试而言,抓包工具绝对是我们日常测试找bug的必备神器。今天主要介绍的是如何配置Fiddler抓取移动端app请求。首先Fiddler是一个http协议调试代理工具,它能够记录并检查所有你的电脑和互联网之间的http通讯,设置断点,查看所有的“进出”Fiddler的数据、。 Fid ...
分类:
移动开发 时间:
2021-06-29 15:39:00
阅读次数:
0