@Component public class SecuringRequestInterceptor implements RequestInterceptor { @Override public void apply(RequestTemplate requestTemplate) { Serv ...
分类:
其他好文 时间:
2021-03-16 14:01:13
阅读次数:
0
首先将插件放在 public下 html代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="https://apps.bdimg.com/libs/jq ...
分类:
Web程序 时间:
2021-03-16 13:53:44
阅读次数:
0
generator代码快速生成 快速生成实体类与dao层以及mapper 帮助文档:https://www.cnblogs.com/dangzhenjiuhao/p/6679311.html 在pom中导入插件 <plugin> <!--Mybatis-generator插件,用于自动生成Mappe ...
分类:
其他好文 时间:
2021-03-15 11:20:24
阅读次数:
0
出错原因是因为原来C盘不够用,重新调整了磁盘大小。导致之前安装的“TortoiseGit”无法使用。 解决方法: 步骤1:工具名:Windows Install Clean Up,大家可以在百度上搜索安装即可。 步骤2:删掉之后还得清理注册表,这个百度也有教程。 步骤3:使用管理员身份打开cmd窗口 ...
分类:
其他好文 时间:
2021-03-12 14:25:09
阅读次数:
0
1. 一键三连 什么是一键三连? 哔哩哔哩弹幕网中用户可以通过长按点赞键同时完成点赞、投币、收藏对UP主表示支持,后UP主多用“一键三连”向视频浏览者请求对其作品同时进行点赞、投币、收藏。 去年在云之幻大佬的 哔哩 项目里看到一键三连的 UWP 实现,觉得挺有趣的,这次参考它的代码重新实现一次,最终 ...
分类:
其他好文 时间:
2021-03-10 13:34:36
阅读次数:
0
一、基础数据类型 数值(int、float) 序列(list、str、tuple) 散列(set、dict) 可迭代对象(序列、散列) 二、命名元组 from collections import namedtuple student = namedtuple('Students', ('name' ...
分类:
其他好文 时间:
2021-03-10 13:26:57
阅读次数:
0
http://www.pipioj.online/problem.php?id=1026 1 #define IO std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); 2 #define bug(x) cout<<#x<<" is "<<x<<e ...
分类:
其他好文 时间:
2021-03-10 13:26:07
阅读次数:
0
一个unique_ptr"拥有“他所指向的对象。与shared_ptr不同,某个时刻只能有一个unique_ptr指向一个给定的对象。当unique_ptr被销毁时,它所指向的对象也被销毁。uniptr_ptr表达的是一种独占的思想。 初始化 #include <iostream> #include ...
分类:
编程语言 时间:
2021-03-10 13:24:43
阅读次数:
0
起因 部署web项目的时候并没有成功,说是资源不可访问,于是查找原因 1、首先检查了业务代码,看前端到controller有无问题 2、其次检查了项目的配置 3、后来发现在out输出里面并没有classes编译好的controller 4、回溯到module中发现build并没有产生target文件 ...
分类:
其他好文 时间:
2021-03-10 12:55:40
阅读次数:
0
首先是deployment: apiVersion: apps/v1 kind: Deployment metadata: name: webapp1 spec: replicas: 1 selector: matchLabels: app: webapp1 template: metadata: ...
分类:
其他好文 时间:
2021-03-09 13:14:40
阅读次数:
0