客户端报“[ERROR] code: 505, UNEXPECTED_FRAME - expected content header for class 60, got non content header frame instead, recoverable: false, server: tru ...
分类:
其他好文 时间:
2021-01-07 12:36:33
阅读次数:
0
应用背景: 本人是医疗软件的开发者, 有许多要跟其他厂商交互的数据, 这次是要接收来自平台的xml格式的数据。 使用dom4j一样可以解析,但是这样的话后期不容易维护,而且程序可读性也差。(其实主要还是不能用Alt+/快捷键打出代码哈哈) 我的实现思路是先用xml样例生成xsd说明文件,然后再用xj ...
分类:
编程语言 时间:
2021-01-06 12:23:17
阅读次数:
0
在nginx配置中添加 location / { try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; } ...
分类:
其他好文 时间:
2021-01-04 11:32:56
阅读次数:
0
今天执行:net start MongoDB 开启服务时,出现服务名无效问题。 百度搜了一些文章,终于找到了解决办法: 1、新建db文件夹和log文件夹 2、新建mongo.config文件 dbpath=D:\Program Files\MongoDB\Server\4.2\data\db log ...
分类:
数据库 时间:
2021-01-04 11:27:12
阅读次数:
0
Linux df(英文全拼:disk free) 命令用于显示目前在 Linux 系统上的文件系统磁盘使用情况统计。 文件-h, --human-readable 使用人类可读的格式(预设值是不加这个选项的...) [root@rdrssitapp03 ~]# df -h Filesystem Si ...
分类:
系统相关 时间:
2021-01-04 11:13:56
阅读次数:
0
继上一篇《Linux Userspace Kernelspace内存分布》之后,在分析一下内存优化的方法。 https://www.cnblogs.com/tangtangworld/p/11738090.html 后面还有一篇进程空内存使用分布进一步分析的方法,看后面有没有时间,这几天被几个Ker ...
分类:
系统相关 时间:
2021-01-04 11:05:48
阅读次数:
0
Pass request headers in a jQuery AJAX GET call 回答1 As of jQuery 1.5, there is a headers hash you can pass in as follows: $.ajax({ url: "/test", header ...
分类:
Web程序 时间:
2021-01-04 10:46:12
阅读次数:
0
在这篇文章中,我们将探索如何使用.NET 5中的新source generator特性,使用MediatR库和CQRS模式自动为系统生成API。 中介者模式 中介模式是在应用程序中解耦模块的一种方式。在基于web的应用程序中,它通常用于将前端与业务逻辑的解耦。 在.NET平台上,MediatR库是该 ...
分类:
Web程序 时间:
2021-01-04 10:32:26
阅读次数:
0
tftp和nfs用于在开发板上通过网络系统来访问ubuntu系统下的文件。ssh服务用于支持在Windows下使用终端软件SecureCRT,MobaXterm登陆Ubuntu。 1 搭建NFS服务 sudo apt-get install nfs-kernel-server rpcbind #安装 ...
分类:
系统相关 时间:
2021-01-01 12:59:58
阅读次数:
0
#0x00 信息收集 nmap -sV -Pn -A -T4 10.10.10.68 PORT STATE SERVICE VERSION 80/tcp open http Apache httpd 2.4.18 ((Ubuntu)) |_http-server-header: Apache/2.4 ...
分类:
其他好文 时间:
2021-01-01 12:11:07
阅读次数:
0