https://www.oauth.com/oauth2-servers/access-tokens/password-grant/ The Password grant is used when the application exchanges the user’s username and p ...
分类:
数据库 时间:
2019-02-01 17:59:57
阅读次数:
155
引用:https://spring.io/blog/2015/02/23/better-dependency-management-for-gradle Using the plugin with Spring Boot There are some similarities between thi ...
分类:
编程语言 时间:
2019-02-01 11:24:18
阅读次数:
368
direct path read在11g中,全表扫描可能使用direct path read方式,绕过buffer cache,这样的全表扫描就是物理读了。 在10g中,都是通过gc buffer来读的,所以不存在direct path read的问题。 direct path read较高的可能原 ...
分类:
数据库 时间:
2019-01-31 16:50:08
阅读次数:
161
了解这个问题,源于昨天开发时遇到的一个小小的问题。 问题描述如下: 比如,我有一个url,定义如下: 那如果我现在拿到一个url是如下: 那么,问题来了: 我如何通过django原生的途径,拿到app=App_70, env=UAT这样的变量? 找了一些文档,最后,发现官网的还是最有效: https ...
分类:
Web程序 时间:
2019-01-31 10:34:29
阅读次数:
288
import java.text.DecimalFormat;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.ArrayList;import java.util.Date;impo ...
分类:
编程语言 时间:
2019-01-30 15:59:29
阅读次数:
220
Given a linked list, swap every two adjacent nodes and return its head. Example: Note: Your algorithm should use only constant extra space. You may no ...
分类:
其他好文 时间:
2019-01-30 13:05:10
阅读次数:
123
function looseEqual (a, b) { if (a b) return true const isObjectA = isObject(a) const isObjectB = isObject(b) if (isObjectA && isObjectB) { try { cons ...
分类:
其他好文 时间:
2019-01-29 18:28:22
阅读次数:
634
pipelines.py settings.py ...
分类:
其他好文 时间:
2019-01-29 10:46:02
阅读次数:
199
集合是Java面试必考知识点,而集合的排序也是非常重要的,工作中经常用到,那么这个知识点也是必须要掌握的,下面是我曾经面试时被面试官问的问题: 根据API可知,Java集合的工具类Collections提供了两种排序方式:Collections.sort(List list) 和 Collectio ...
分类:
编程语言 时间:
2019-01-28 20:15:42
阅读次数:
214
本文由云+社区发表 作者:ivweb qcyhust 导语 WebGL绘制图像时,往着色器中传入颜色信息就可以给图形绘制出相应的颜色,现在已经知道顶点着色器和片段着色器一起决定着向颜色缓冲区写入颜色信息并最终呈现出来,那么这个过程是什么样,如果图形的颜色需要用现有图片来渲染那么又该如何操作? 颜色缓 ...
分类:
Web程序 时间:
2019-01-28 19:18:25
阅读次数:
210