后台代码: /** * 获取视频流 * @param response * @param videoId 视频存放信息索引 * @return * @author xWang * @Date 2020-05-20 */ @RequestMapping("/getVideo/{videoId}") p ...
分类:
编程语言 时间:
2020-05-24 16:46:37
阅读次数:
497
安装centos时选择带gui的服务器->选择java环境 问题: Unrecognized option: -vError: Could not create the Java Virtual Machine.Error: A fatal exception has occurred. Progr ...
分类:
其他好文 时间:
2020-05-24 13:50:33
阅读次数:
144
What is the difference between sed and awk sed is a stream editor. It works with streams of characters on a per-line basis. It has a primitive program ...
分类:
其他好文 时间:
2020-05-24 11:34:00
阅读次数:
81
git config --global user.name "MoonXu0722"git config --global user.email xpylovely520@gmail.comssh-keygen -C 'your@email.address' -t rsa 把/c/用户/xpy/.s ...
分类:
Web程序 时间:
2020-05-24 09:57:58
阅读次数:
69
前面的章节是侧重讲解方法的了解和运用,本章节侧重讲解类中设计的一些理念,更多的是一些概念和思维逻辑 本章重点内容: 1、Python和OOP 2、OOP和继承:“is-a”关系 3、OOP和组合:“has-a”关系 4、OOP和委托:“包装器”代理对象 5、类的伪私有属性 6、方法是对象:绑定或未绑 ...
分类:
编程语言 时间:
2020-05-24 09:51:56
阅读次数:
70
mybatis中的一对一: 从表实体应该包含主表实体对象的引用 package com.itheima.domain;public class AccountUser extends Account { private String username; private String address; ...
分类:
其他好文 时间:
2020-05-24 00:28:07
阅读次数:
50
问题: 给定一个数组,其为循环数组(最后一个元素的下一个元素为第一个元素)。 求连续子数组和的最大值。 Example 1: Input: [1,-2,3,-2] Output: 3 Explanation: Subarray [3] has maximum sum 3 Example 2: Inp ...
分类:
其他好文 时间:
2020-05-23 18:26:27
阅读次数:
54
1、Java实体bean类 package com.project.pojo; import java.io.Serializable; public class Card implements Serializable{ private int id; private String address ...
分类:
Web程序 时间:
2020-05-23 13:26:58
阅读次数:
57
It’s been a while since Cisco has announced Smart License to replace Traditional PAK-based licensing. Overall, this new system brings loads of benefit ...
分类:
系统相关 时间:
2020-05-23 12:53:18
阅读次数:
259
Python环境搭建 目录环境 配置文件 所设的工作路径等等需要挂载需要运行的py文件 requirement.txt是python项目可导出的该项目所需依赖包 RUN去安装requirement.txt内记录的所需依赖包,build时装到镜像中 CMD在启动容器时,参数为空执行默认hello.py ...
分类:
其他好文 时间:
2020-05-23 00:06:43
阅读次数:
67