Git 和 HTTPS git clone https://xxx.daFei 会返回 SSL certificate problem: unable to get local issuer certificate,这时候需要把HTTPS关闭一下 git config --global http.s ...
分类:
Web程序 时间:
2021-05-24 04:28:43
阅读次数:
0
38 jquery的动画、AJAX、数据序列化 动画 show hide toggle show: 显示 hide: 隐藏 toggle: 有就隐藏 没有就显示 show/hide/toggle(speed, easing, callback) width + height + opacity sp ...
分类:
Web程序 时间:
2021-05-24 00:54:41
阅读次数:
0
近期遇到一个问题,在spring oauth2.0默认的密码登录校验中,只能访问单个数据库表,但针对不同的表用户,需要访问不同的表,所以需要传一个新参去判断用户访问不同的表来校验账号密码 本文主要是是讨论oauth2.0支持多表用户登录 我使用的Spring Boot为2.2.5.RELEAS,Sp ...
分类:
编程语言 时间:
2021-05-24 00:36:35
阅读次数:
0
目标 了解Python Python的应用领域 Python的版本 Python介绍 Python是时下最流行、最火爆的编程语言之一,具体原因如下: 1. 简单、易学,适应人群广泛 2. 免费、开源 3. 应用领域广泛 备注:以下知名框架均是Python语言开发。 Google开源机器学习框架:Te ...
分类:
编程语言 时间:
2021-05-03 12:28:17
阅读次数:
0
异常处理机制 抛出异常 捕获异常 五个关键词 try、catch、finally、throw、throws package com.exception; public class Test { public static void main(String[] args) { try { new Te ...
分类:
其他好文 时间:
2021-05-03 12:20:05
阅读次数:
0
抽取为接口后, springboot事务开启,不在报错。 @Transactional public interface DescriptionService { public Description addDescription(Description description) ; 启动类 @Sp ...
分类:
其他好文 时间:
2021-04-30 12:36:32
阅读次数:
0
1、说明:创建数据库 CREATE DATABASE database - name 2、说明:删除数据库 drop database dbname 3、说明:备份sql server 创建 备份数据的 device USE master EXEC sp_addumpdevice 'disk' , ...
分类:
数据库 时间:
2021-04-27 14:15:48
阅读次数:
0
c++11 中的 shared_from_this() 来源于 boost 中的 enable_shared_form_this 类和 shared_from_this() 函数,功能为返回一个当前类的 std::share_ptr,使用方法如下: #include<memory> class Te ...
分类:
编程语言 时间:
2021-04-26 13:06:17
阅读次数:
0
create user hnrh identified by hnrh123; Oracle 删除用户时出现异常ora-01922: CASCADE must bu specified to drop 用户名 Oracle 删除用户时出现错误ora-01922: CASCADE must bu sp ...
分类:
数据库 时间:
2021-04-21 12:53:00
阅读次数:
0
一、词频统计: 1.读文本文件生成RDD lines lines = sc.textFile('file:///home/hadoop/word.txt') 2.将一行一行的文本分割成单词 words flatmap() words=lines.flatMap(lambda line:line.sp ...
分类:
其他好文 时间:
2021-04-20 15:02:06
阅读次数:
0