linux自定义服务并设置开机自启动 【init.d】 服务脚本 #!/bin/sh #chkconfig: 2345 80 05 #description: api-server start() { nohup java -jar ./ } stop() { } status() { `ps -e ...
分类:
其他好文 时间:
2020-07-10 13:32:25
阅读次数:
70
select * from show_center.biz_show where show_Name like '%黑小鸭%' order by update_time desc limit 10; select * from show_center.std_show where show_Name ...
分类:
其他好文 时间:
2020-07-10 13:08:57
阅读次数:
72
做项目遇到请求对方页面,对方返回的参数串直接拼接到我的URL上,是一个加密串. 因为忘记了之前有URLEncoder这个步骤, 解密的时候没有使用URLDecoder进行解密, 直接使用AES解密遇到报错, Input length must be multiple of 16 when decry ...
分类:
其他好文 时间:
2020-07-10 12:57:16
阅读次数:
103
@{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>协同办公云平台-登录</title> <link href="~/Conten ...
分类:
Web程序 时间:
2020-07-10 09:46:03
阅读次数:
96
433. 岛屿的个数 中文English 给一个 01 矩阵,求不同的岛屿的个数。 0 代表海,1 代表岛,如果两个 1 相邻,那么这两个 1 属于同一个岛。我们只考虑上下左右为相邻。 样例 样例 1: 输入: [ [1,1,0,0,0], [0,1,0,0,1], [0,0,0,1,1], [0, ...
分类:
其他好文 时间:
2020-07-10 09:27:58
阅读次数:
64
oracle: select * from ene_electricity where num is not null order by year desc,month desc ...
分类:
数据库 时间:
2020-07-09 12:39:18
阅读次数:
103
获取排序后的前12条数据: select * from (select * from ene_electricity where num is not null order by year desc,month desc) where rownum <=12 ...
分类:
编程语言 时间:
2020-07-09 12:20:42
阅读次数:
61
介绍 Redis是一个内存中的键值存储器,以其灵活性,性能和广泛的语言支持而闻名。它通常用作数据库,缓存和消息代理,并支持各种数据结构。 本教程演示如何在Ubuntu 18.04服务器上从源进行安装和配置Redis。请注意,通过官方Ubuntu存储库下载和安装Redis可以减少安装步骤。 准备 一个 ...
分类:
系统相关 时间:
2020-07-09 12:06:37
阅读次数:
58
1. from Arthur Samuel:Field of study that gives computers the ability to learn without being explicitly programmed. 即:不直接针对问题进行编程的情况下,赋予机器学习的能力。 2. fr ...
分类:
其他好文 时间:
2020-07-08 19:52:57
阅读次数:
80
1 包对象 基本介绍:包可以包含类、对象和特质trait,但不能包含函数/方法或变量的定义。这是Java虚拟机的局限。为了弥补这一点不足,scala提供了包对象的概念来解决这个问题。 package com.atguigu { //每个包都可以有一个包对象。你需要在父包(com.atguigu)中定 ...
分类:
其他好文 时间:
2020-07-07 17:44:36
阅读次数:
61