idea创建Springcloud项目时报错: Initialization failed for 'https://start.spring.io' Please check URL, network and proxy settings. Error message: Cannot downlo ...
分类:
编程语言 时间:
2020-06-04 21:37:38
阅读次数:
149
一:Spring Data JPA简介 Spring Data JPA 是 Spring 基于 ORM 框架、JPA 规范的基础上封装的一套JPA应用框架,可使开发者用极简的代码即可实现对数据库的访问和操作。它提供了包括增删改查等在内的常用功能,且易于扩展!学习并使用 Spring Data JPA ...
分类:
编程语言 时间:
2020-06-04 15:21:53
阅读次数:
79
最终配置的方案是浏览器和 Nginx 之间走的 HTTPS 通讯,而 Nginx 到 Tomcat 通过 proxy_pass 走的是普通 HTTP 连接。 下面是详细的配置(Nginx 端口 80/443,Tomcat 的端口 8080): Nginx 这一侧的配置没什么特别的: upstream ...
分类:
Web程序 时间:
2020-06-04 01:22:21
阅读次数:
87
解决端口占用 Windows上端口占用会提示诸如以下错误: Fatal error. can't bind to 127.0.0.1:10809: There may be another Privoxy or some other proxy running on port 10809 解决该异常 ...
算法名称 简称 概述 轮询(默认) round-robin(RR) 按照时间顺序逐一分配到后端不同的服务器 weight weight-round-robin(WRR) 加权轮询,weight值越大,分配到的访问几率越高 ip_hash ip_hash 每个请求按访问IP的hash结果分配,这样来自 ...
分类:
其他好文 时间:
2020-06-01 23:48:22
阅读次数:
80
explicit作用 阻止类构造函数的隐式自动转换。 由于C++的构造函数是默认支持隐式转换的(即默认是关键字implicit修饰)。 explicit使用场景 修饰只含一个参数的构造函数; 修饰除了第一个参数外其余参数都有默认值的构造函数。 当在上面两种情况以外的构造函数前加explicit时,e ...
分类:
编程语言 时间:
2020-06-01 21:03:26
阅读次数:
85
Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl ' the current model ' get the current active model Set mdl = ActiveModel If ( ...
分类:
其他好文 时间:
2020-06-01 13:35:59
阅读次数:
83
依次执行 1 - 5 步,实现 注释转名称 或者名称转注释,两个转换脚本附上 1. 名称转注释脚本: Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl ' the current model ' get ...
分类:
其他好文 时间:
2020-05-31 21:34:31
阅读次数:
61
流程图 示例代码 1 package DPCOR; 2 3 import java.lang.reflect.InvocationHandler; 4 import java.lang.reflect.Method; 5 import java.lang.reflect.Proxy; 6 impor ...
分类:
其他好文 时间:
2020-05-31 18:08:10
阅读次数:
54
今天在构建mpvue项目的时候,出现了以下错误: vue-cli · Failed to download repo mpvue/mpvue-quickstart: connect ETIMEDOUT 13.250.162.133:443 之前我遇到的npm下载webpack插件时出现network ...
分类:
Web程序 时间:
2020-05-31 17:38:04
阅读次数:
146