1.error: tool 'xcodebuild' requires Xcode的解决办法 sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/ https://blog.csdn.net/shorewb/ar ...
分类:
其他好文 时间:
2018-12-10 11:51:09
阅读次数:
181
nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:37 一:开始Nginx的SSL模块 1.1 Nginx如果未开启SSL模块,配置Https时提示错 ...
分类:
其他好文 时间:
2018-12-08 13:17:55
阅读次数:
156
一、单点登录的概念 单点登录(Single Sign On),简称为SSO。SSO是定义在多个应用系统中,用户只需要登录一次就可以访问所有的相互信任的应用系统。 当我们创建工程的子系统部署在不同的服务中的时候,使用传统的session是无法解决问题的,这时候我们就需要使用相关的单点登录技术来解决。 ...
分类:
其他好文 时间:
2018-12-07 22:32:40
阅读次数:
257
[toc] 获取最新版 vim 源码 1 git仓库clone 2, 源码包下载,里面有各个版本的vim压缩包 Unix The best way to install Vim on Unix is to use the sources. This requires a compiler and i ...
分类:
系统相关 时间:
2018-12-06 01:31:28
阅读次数:
394
坑提示:"The template root requires exactly one element" Src下面有个App.vue文件,在index里引用了这个文件以后,我在.vue文件里添加了html,但是加完一个div以后,再加div就没效果了,百思不得其解。 如图: div1能显示,但是d ...
分类:
其他好文 时间:
2018-11-30 18:22:09
阅读次数:
174
@RequiresAuthentication 验证用户是否登录,等同于方法subject.isAuthenticated() 结果为true时。 @RequiresUser 验证用户是否被记忆,user有两种含义: 一种是成功登录的(subject.isAuthenticated()&n ...
分类:
其他好文 时间:
2018-11-24 19:50:19
阅读次数:
199
今天在学python的类与继承的时候遇到一个错误,原来是自己在ctrl+c ctrl+v的时候漏了一个括号 运行时出现了以下的错误 super.__init__(make,year,model) TypeError: descriptor '__init__' requires a 'super' ...
分类:
编程语言 时间:
2018-11-24 14:38:33
阅读次数:
200
1.@Nullable 作用于函数参数或者返回值,标记参数或者返回值可以为空. 2,@NonMull 作用于函数参数或者返回值,标记参数或者返回值不可以为空. 3.@LayoutRes 标记整数值android.R.layout类型 4.@UiThread 标记运行在UI线程 中 5.@MainTh ...
分类:
移动开发 时间:
2018-11-16 17:22:14
阅读次数:
232
在8.0以下启动新的activity没问题,但在8.0系统的手机上就报错,跳转不成功 错误原因: 目标activity中有如下方法 /** * Get the userId associated with this context * @return user id * * @hide */ @Te ...
分类:
移动开发 时间:
2018-11-15 18:30:11
阅读次数:
562
Elasticsearch Elasticsearch(以下简称ES)是一款Java语言开发的基于Lucene的高效全文搜索引擎。它提供了一个分布式多用户能力的基于RESTful web接口的全文搜索和分析服务,并作为Apache许可条款下的开放源码发布,是当前流行的企业级搜索引擎。设计用于云计算中 ...
分类:
其他好文 时间:
2018-11-13 13:02:21
阅读次数:
195