@GetMapping("/send") public String getmessage(HttpServletRequest request) { request.setAttribute("msg","跳转"); //设置参数 request.setAttribute("code",123); ...
分类:
编程语言 时间:
2021-06-29 16:08:05
阅读次数:
0
TypeError: 'generator' object is not subscriptable,错误的原因就是把不具有下标操作对象用了对象[i],所以需要+list转化,加了之后,就不会报错了 ...
分类:
其他好文 时间:
2021-06-29 15:59:51
阅读次数:
0
有人说要先安装Cython,但是我安装了Cython之后还是报这个错误,然后就换了一种安装思路 先去清华源镜像站https://opentuna.cn/pypi/web/simple/pycocotools/下载pycocotools-2.0.2.tar.gz 然后cd到pycocotools-2. ...
##Spring Security注意事项 权限优先级: 在SecurityConfig中configure(HttpSecurity http)方法中,如下代码 http.authorizeRequests() .antMatchers("/admin/**").hasRole("admin") ...
分类:
编程语言 时间:
2021-06-28 20:23:02
阅读次数:
0
throw 抛异常 throw new Exception('参数只能是数字') try...catch 异常 try { //抛异常的代码 } catch (Exception $e) { echo $e->getMessage(); } 实例 /src/TestException.php (抛异 ...
分类:
其他好文 时间:
2021-06-28 19:30:58
阅读次数:
0
背景 背景: 由于工作需要, 需要在现有opencv 3.3.1版本上安装opencv2.4.11版本, 安装目录为/usr/local/opencv-2.4/下, 根据多版本安装教程, 出现了opencv与cuda的安装冲突. 编译出错如下: CMake Error: The following ...
分类:
其他好文 时间:
2021-06-28 18:51:29
阅读次数:
0
date:2021/6/26 背景: 升级了jenkins后构建报错如标题。 报错截图如下: 话不多说,找了参考链接:https://issues.jenkins.io/browse/JENKINS-64806 需要更新指令插件,token 在jenkins得插件管理更新那里,找到这个插件(Toke ...
分类:
编程语言 时间:
2021-06-28 18:49:43
阅读次数:
0
最近新配了一个主机(开心😊) 配置: CPU Intel(R) Core(TM) i7-10700KF CPU @ 3.80GHz 3.79 GHz 主板 微星z490 S01 内存 金士顿 (Kingston) 16GB(8G×2) DDR4 3200 台式机内存条 骇客神条 Fury雷电系列 ...
现象: git clone 或是 git pull的时候会出错,error 大概如下 remote: Enumerating objects: 7433, done.remote: Counting objects: 100% (7433/7433), done.error: pack-object ...
分类:
其他好文 时间:
2021-06-28 18:00:00
阅读次数:
0
public void startC138() { new Thread(() -> { try { Thread.sleep(10000); String killredis = "/home/bjlthy/gym/code/killredis.sh"; Process ps = Runtime. ...
分类:
编程语言 时间:
2021-06-28 17:45:28
阅读次数:
0