详细错误如下 System.AggregateException:“Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType: Swashbuckl ...
1 基础 1 引入vue <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> 2 定义操作元素 <div id="app"> 3 创建Vue应用,并挂载元素 var app = new Vue({ el: '#ap ...
分类:
其他好文 时间:
2021-04-13 11:38:38
阅读次数:
0
updateOne() 一、起因: 由于个人域名申请了https,所以原本数据库的资源存在http字段的需要改为https,不然的话由于浏览器发现安全协议中混入了不安全的内容,将会拦截这些内容,所以我需要更新我的mongoDB数据库,本来直接想使用updateMany: 二、解决: 官方给的例子: ...
分类:
数据库 时间:
2021-04-12 12:13:11
阅读次数:
0
Kafka集群搭建 Zookeeper简介 ZooKeeper 是一个开源的分布式框架,提供了协调分布式应用的基本服务。它向外部应用 暴露一组通用服务——分布式同步(Distributed Synchronization)、命名服务(Naming Service)、集群维护(Group Mainte ...
分类:
其他好文 时间:
2021-04-12 11:49:15
阅读次数:
0
最近刚好有朋友在问Node.js多线程的问题,我总结了一下,可以考虑使用源码包里面的worker_threads或者第三方的模块来实现。 首先明确一下多线程在Node.js中的概念,然后在聊聊worker_threads的用法。天生异步,真心强大。 Node.js多线程概述 有人可能会说,Node. ...
分类:
编程语言 时间:
2021-04-10 13:39:47
阅读次数:
0
改变原数组方法 splice() : 返回删除项组成的数组 sort() reverse() fill() : 初始化数组 例如:new Array(26).fill(0) pop() push() shift() unshift() 不改变原数组方法 slice(begin ? ,end ?) : ...
分类:
编程语言 时间:
2021-04-09 13:42:08
阅读次数:
0
1.基础(SpringMVC和SpringBoot都有在用) @Controller 通常用于标注在控制层类上。 @Service 通常用于标注在业务层实现类上。可以设置自定义service类的别名,在控制层引入时就需要根据设置的别名进行引入。 @Mapper 不需要在启动类上配置扫描,会在运行时通 ...
分类:
编程语言 时间:
2021-04-09 13:04:25
阅读次数:
0
long long myPow(long long x, int n) { long long ans = 1; while(n){ if(n % 2 != 0){ ans *= x; ans %= modN; } x *= x; x %= modN; n /= 2; } return ans; } ...
分类:
其他好文 时间:
2021-04-08 13:55:01
阅读次数:
0
一、iptables防火墙 1、基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火墙 service iptables start # 重启防火墙 service iptables restart # ...
分类:
系统相关 时间:
2021-04-07 11:31:55
阅读次数:
0
###用于测试的接口地址 https://github.com/Alana33/testApi ###axios中文文档(使用教程) http://www.axios-js.com/zh-cn/docs/ ###获取结果 ###上传结果 <!DOCTYPE html> <html lang="en" ...
分类:
移动开发 时间:
2021-04-07 11:22:00
阅读次数:
0