Swagger 快速上手 1. Maven 依赖如下 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 --> <dependency> <groupId>io.springfox</groupId> <a ...
分类:
其他好文 时间:
2021-06-02 10:44:59
阅读次数:
0
import org.springframework.util.AntPathMatcher; import org.springframework.util.PathMatcher; import junit.framework.TestCase; public class AntPathMatc ...
分类:
编程语言 时间:
2021-06-02 10:29:46
阅读次数:
0
以下配置为个人开发环境VS2019的NuGet进行的配置 1. NuGet 仅支持 HTTP 代理,Visual Studio 的 NuGet 配置文件位于 %appdata%\NuGet\NuGet.Config 2. 在 <configuration> 节下增加 <config> 节,添加 ht ...
分类:
其他好文 时间:
2021-05-25 18:18:08
阅读次数:
0
打开charles,点击proxy-选中Throttle Settings 勾选Enable Throttling 点击ok。弱网环境设置成功 如果是针对单独的地址进行弱网测试,可选中location.添加需要测试的url ...
分类:
其他好文 时间:
2021-05-24 16:24:38
阅读次数:
0
1.show variables like 'lower%' 2.在my.cnf中的[mysqld]后面添加lower_case_table_names=1 3.重启mysql service mysqld restart ...
分类:
数据库 时间:
2021-05-24 16:02:50
阅读次数:
0
1:点击安装文件charles-proxy-4.2.8-win64.msi 2:点击下一步 3:勾选同意,点击”next”按钮 4:指定安装的路径,继续点击”next”按钮 5:点击”install”按钮 6:等待安装 7:点击”Finish”按钮 8:安装结束 ...
分类:
其他好文 时间:
2021-05-24 15:35:33
阅读次数:
0
一.报错信息 Error occurred while trying to proxy request /user/report-user from localhost:83 .... 二.index.js 配置信息 proxyTable: { '/api': { target: 'http://l ...
1.nigin添加一段配置 server { listen 80; # this is the key !!!!! proxy_set_header Host $host; location /client/pids { proxy_pass http://10.103.13.103:3200/cl ...
分类:
编程语言 时间:
2021-05-24 14:35:17
阅读次数:
0
🐉 大致介绍 本章讲解一下CAS,本质就是机器指令:cmpxchg+lock(根据处理器核数进行判断) 原子操作; 而在谈到并发操作里面,我们不得不谈到AQS,JDK的源码里面好多并发的类都是通过Sync(同步器)的内部类继承AQS而实现出五花八门的功能; 🐉 简单认识AQS 🐉 何为AQS? ...
分类:
编程语言 时间:
2021-05-24 14:01:29
阅读次数:
0
Given a sequence of K integers { N?1??, N?2??, ..., N?K?? }. A continuous subsequence is defined to be { N?i??, N?i+1??, ..., N?j?? } where 1≤i≤j≤K. T ...
分类:
其他好文 时间:
2021-05-24 12:48:45
阅读次数:
0