1、LAMP 环境搭建 1.1 、安装 apache 安装 pcre tar -zxvf pcre-8.41.tar.gz cd pcre-8.41 ./configure --prefix=/home/pcre make make install 安装 apr tar -zxvf apr-1.6. ...
分类:
其他好文 时间:
2020-07-08 21:26:11
阅读次数:
65
Hello and Welcome to the first part of an exciting series of blog posts where you will learn how to build an end-to-end full stack polling app similar ...
分类:
移动开发 时间:
2020-07-08 19:54:59
阅读次数:
69
Concept http://spark.apache.org/streaming/ Spark Streaming makes it easy to build scalable fault-tolerant streaming applications. Ease of Use Build ap ...
分类:
其他好文 时间:
2020-07-08 13:26:09
阅读次数:
59
一.pom.xml com.alibaba easyexcel 2.2.6二.必须要finish才会写入,不finish只会创建empty的文件。WriteSheet writeSheet = EasyExcel.writerSheet("测试1").head(list).build(); exce... ...
分类:
其他好文 时间:
2020-07-08 13:25:54
阅读次数:
107
二进制包 在 Linux 上的也安装十分简单,从 官方 GitHub Release 处直接下载编译好的二进制文件即可。 例如,在 Linux 64 位系统上直接下载对应的二进制包。 $ sudo curl -L https://github.com/docker/compose/releases/ ...
分类:
其他好文 时间:
2020-07-08 13:21:31
阅读次数:
65
1、Sass -- vue解决sass-loader的版本过高导致的编译错误 Module build failed: TypeError: this.getResolve is not a function at Object.loader (C:\Users\Baicells\Desktop\h ...
分类:
Web程序 时间:
2020-07-08 13:11:47
阅读次数:
84
用线段树维护区间剩余的最大值,这样可以辅助二分,越左越好 对于用完k堆的,直接将他的值变为0即可 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N=6e5+10; struct node{ i ...
分类:
其他好文 时间:
2020-07-07 23:39:52
阅读次数:
91
在生产环境中强制使用https,但在调试模式下允许使用明文的方法 它仅在api 23+上使用 在build.gradle中: // Put this in your buildtypes debug section: manifestPlaceholders = [usesCleartextTraf ...
分类:
移动开发 时间:
2020-07-07 20:03:07
阅读次数:
128
问题: debug的时候,有个字符串参数值比较长,导致IDEA编译的时候报错:常量字符串过长。 解决方法: 1、选择File→Settings→Build,Execution,Deployment→Java Compiler,将Use compiler改为Eclipse即可,IDEA默认是Javac ...
分类:
其他好文 时间:
2020-07-07 17:58:45
阅读次数:
52
首先启动 IntelliJ IDEA,然后选择 File > Open 在弹出的界面中,选择你要导入的项目的文件夹。 如果是 Gradle 项目的话,你的 Gradle 项目应该会有一个 build.gradle 文件。 选择这个文件,然后选择 OK 后就可以了。 https://www.ossez ...
分类:
其他好文 时间:
2020-07-07 09:34:54
阅读次数:
53