问题1:harbor服务不能正常提供? Error response from daemon: Get http://hub.atguigu.com/v2/: dial tcp 192.168.66.100:80: connect: connection refused 原因分析:harbor服务器 ...
分类:
其他好文 时间:
2021-06-03 17:53:13
阅读次数:
0
文章目录: 前后端接口交互 我们都知道,前端通常会通过后台提供的接口来获取数据来完成前端页面的渲染,前端可以为 PC 端、M 端、小程序、APP 等。 在这废话就不多说了,这不是重点。 接口返回值约定 返回值规范 设置返回的 HTTP 响应状态码; 发生错误时,需设置 Response Body 的 ...
使用Linux命令的awk工具 delay_avg.sh脚本内容如下所示: #!/bin/sh RESPONSEFILE=$1 if [ $# -ne 1 ] then echo "usage: ./delay_avg.sh named.response.X " else { cat $RESPON ...
分类:
系统相关 时间:
2021-06-02 18:51:02
阅读次数:
0
单独json化一个对象,压缩为null的字段 @RequestMapping("/toDoListApproval") public void toDoListApproval(String id, HttpServletResponse response) throws Exception { O ...
分类:
编程语言 时间:
2021-06-02 18:44:34
阅读次数:
0
Kaptcha导入jar包 编写Kaptcha配置类,在Config包下(配置图片长宽、字的个数、范围、颜色、干扰的点、线) @Configuration public class KaptchaConfig { @Bean public Producer kaptchaProducer (){ / ...
分类:
编程语言 时间:
2021-06-02 18:32:34
阅读次数:
0
import requestsfrom bs4 import BeautifulSoup headers = { 'Cookie':'OCSSID=4df0bjva6j7ejussu8al3eqo03', 'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win ...
分类:
编程语言 时间:
2021-06-02 16:41:36
阅读次数:
0
Halo 为了实现跳转到登录页,采用了response.sendRedirect(adminIndexRedirectUri)来进行页面重定向,其中adminIndexRedirectUri的值为“ /admin/index.html”,是管理主界面。 ...
分类:
编程语言 时间:
2021-06-02 13:13:00
阅读次数:
0
1.axios基本使用 // axios 中的GET请求axios.get( '/user', { params: { ID: ‘001’ } },{ headers:{"Authorization":"Bas"+"ccccccc"} } ) .then(function (response) { ...
分类:
其他好文 时间:
2021-06-02 12:49:57
阅读次数:
0
请求转发与重定向的区别 **请求转发:**request.getRequestDispatcher("path").forWard(request,response); **请求重定向:**response.sendRedirect("path"); 相同点: 实现页面的跳转 区别: 使用请求转发的 ...
分类:
其他好文 时间:
2021-06-02 12:15:16
阅读次数:
0
UserInfoHolder --也可以换成user /** *用户登录 返回角色ABCF,根据角色判断可查看哪个页面 * *///@ACL@PostMapping("/userLogin")public BaseResponse userLogin(@RequestBody User user, ...
分类:
其他好文 时间:
2021-05-25 18:35:11
阅读次数:
0