一、配置简单的口令访问 1,建立数据库和用户 postgres=# create database epbd; CREATE DATABASE postgres=# create role user1 with logi…
标签:编程问答
代码风格统一工具:EditorConfig 和 静态代码检查工具:ESLint
EditorConfig 最常见的用途是:统一文件的编码字符集以及缩进风格 使用 Eslint 做代码 lint,那么为什么还要使用 .editorconfig 呢?细细想了下,应该有两个方面吧。 Eslint 确实包含…
Failed to start bean 'stompBrokerRelayMessageHandler'; nested exception is java.lang.NoClassDefFoundError: reactor/io/codec/Codec
最新版本的Spring需要reactor 2.0,看看你的POM有一个明确的1.1.6依赖。 解决: <dependency> <groupId>org.projectreactor</gr…
Fixed the catkin_make broken problem after intalling newer Python with Anaconda
Problem “No module named catkin_pkg.package” on catkin_make w/ Indigo I have the problem after ana…
Throwable和Exception的区别
Java语言要求java程序中(无论是谁写的代码)所有抛出(throw)的异常都必须是从Throwable派生而来。当然,实际的Java编程中,由于JDK平台已经为我们设计好了非常丰富和完整的异常对象分类模型。因此,ja…
[Angular] Control the dependency lookup with @Host, @Self, @SkipSelf and @Optional
Very differently to AngularJS (v1.x), Angular now has a hierarchical dependency injector. That allows to speci…
9.6 用finally清除
9.6 用finally清除 无论一个违例是否在try块中发生,我们经常都想执行一些特定的代码。对一些特定的操作,经常都会遇到这种情况,但在恢复内存时一般都不需要(因为垃圾收集器会自动照料一切)。为达到这个目的,可在所有…
2018-05-03 install Realm 3.1.0 failed
cocoapods Installing Realm (3.1.0) [!] /bin/bash -c set -e sh build.sh cocoapods-setup core is not a symlink. …
No module named catkin_pkg.package
加了个模块,再次catkin_make报错 ImportError: “from catkin_pkg.package import parse_package” failed: No modul…
Android 关于java.util.NoSuchElementException错误
写了一个从A文件复制到B文件的例子,其中要求去掉重复的行。 于是想到了Set,这本来是很容易的事情,结果在向外写数据时抱错 Java.util.NoSuchElementException 网络上反复查证也没有相关的内容…
curl 错误总结
证书域名与访问的域名不一致 问题:curl SSL: certificate subject name ‘luffichen_server.tencent.com’ does not match …
Android Studio - Unable to create Debug Bridge: Unable to start adb server: adb server version (32) doesn't match this client (40)
错误提示:Unable to create Debug Bridge: Unable to start adb server: adb server version (32) doesn’t match th…