1. 如何导出certificate? 方法1)  通过浏览器导出证书,这个功能好像firefox比较简单,Chrome和safari找起来比较麻烦。 firefox->url(https://www.google.com)->click "i(nformation)"->more information->view Certificate->Details->Export即可。 方法2) 还可以通过下 ...

    阅读全文
  2. 对称密钥加密(Symmetric Key Cryptography):加密与解密使用相同密钥。 非对称密钥加密(Asymmetric Key Cryptography):加密与解密使用不同密钥。   对称密钥加密又叫专用密钥加密或共享密钥加密,即发送和接收数据的双方必使用相同的密钥对明文进行加密和解密运算。对称密钥加密算法主要包括:DES、3DES、IDEA、FEAL、BLOWFISH等。   非对称加密算法是一种密钥的保密方法。非对称加 ...

    阅读全文
  3. 发现这个网站,值得推荐给所有的程序员看一下。 程序员的自我修养:网站链接如下: https://leohxj.gitbooks.io/a-programmer-prepares/content/ 文章简洁明了,列举了程序员必备的基础知识,已经作者收集的很多不错的网站链接。 这里列出该书(网站)的目录链接以供快速访问。 1. 程序员基础知识 1.1. 字符编码 1.2. 技术名词 1.3. 语义 ...

    阅读全文
  4. 如何invoking a SOAP service from PLSQL? the call is timing out within 60 seconds no matter what the timeout value we set using set_transfer_timeout method, we are getting the following error.   "Error Occurred. Message: ORA-29273: HT ...

    阅读全文
  5. IDC国际数据公司 https://www.idc.com.cn/about/about.jsp https://idc-community.com/about ...

    阅读全文
  6. 下面三个命令都可以查看linux操作系统的版本信息 cat /etc/os-release lsb_release -a hostnamectl cat /etc/os-release [test@test01 ~]$ cat /etc/os-release NAME="Oracle Linux Server" VERSION="7.4" ID="ol" VERSION_ID=" ...

    阅读全文
  7. 启动Tomcat8.5.11时遇到下面的异常: org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19 at org.apache.tomcat.util.bcel.classfile.Constant.readConstant(Constant.java:131) at org.apache.tomcat.util.bcel. ...

    阅读全文
  8. 优雅REST风格的资源URL不希望带 .html 或 .do 等后缀.由于早期的Spring MVC不能很好地处理静态资源,所以在web.xml中配置DispatcherServlet的请求映射,往往使用 *.do 、 *.xhtml等方式。这就决定了请求URL必须是一个带后缀的URL,而无法采用真正的REST风格的URL。 如果将DispatcherServlet请求映射配置为"/",则Spring MVC将捕获Web容器所有的请求,包括静态资源的请求,Sprin ...

    阅读全文
  9. 参考文章: https://www.cnblogs.com/51kata/p/5152400.html http://www.cnblogs.com/fangjian0423/p/servletContainer-tomcat-urlPattern.html Servlet容器Tomcat中web.xml中url-pattern的配置详解[附带源码分析] https://blog.csdn.net/mengxiangxingdong/article/details/806 ...

    阅读全文
  10. 本文是学习Spring Testing官方文档的知识点摘要。官方文档:https://docs.spring.io/spring/docs/current/spring-framework-reference/testing.html#testing 关键词:Mock Objects, TestContext Framework, Spring MVC Test, WebTestClient   1. Introduction to Spring Testing ...

    阅读全文
  11. 本文为学习官方文档的学习笔记,单纯知识点摘要。官方文档: https://docs.spring.io/spring/docs/current/spring-framework-reference/data-access.html#spring-data-tier 1) Transaction Management Advantages of the Spring Framework's Transaction Support Model Glob ...

    阅读全文
  12. 36990

    1. 这个Docker视频demo了一个Docker的应用场景: https://www.youtube.com/watch?v=YFl2mCHdv24 ...

    阅读全文
  13. 本文为spring cloud学习笔记,官方文档:https://cloud.spring.io/spring-cloud-static/Greenwich.SR1/ 官方文档内容比较多,大体分为下面几大部分: Cloud Native Applications Spring Cloud Context: Application Context Services Spring Cloud Commons: Common Abstractions ...

    阅读全文
  14. Spring Cloud学习过程中相关的知识点和软件项目: (1) Cloud Foundry: https://www.cloudfoundry.org/ ​   (2)Pivotal Web Services: https://run.pivotal.io/ (3)Zookeeper: https://zookeeper.apache.org/doc/current/zookeeperSt ...

    阅读全文
  15. zookeeper学习过程中收集的一些不错的资料   Zookeeper官方文档:https://zookeeper.apache.org/doc/current/zookeeperStarted.html Zookeeper Demo: https://www.youtube.com/watch?v=Qhc6RMaDkgY Apache Zookeeper | Hands-On - Znodes: https://www.youtube. ...

    阅读全文
  16. <<Java™ in a Nutshell: A Deskop Quick Reference >>   docstore.mik.ua/orelly/java-ent/jnut/index.htm ...

    阅读全文
  17.   官方文档:https://kotlinlang.org/docs/reference/ Kotlin中国:https://www.kotlincn.net/ ...

    阅读全文
  18. Spring Tools2019-06-21

    https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling for your favorite coding environment. Largely rebuilt from scratch, it provides world-class support for developing Spring-based enterprise applications, whether you ...

    阅读全文
  19. NYSE, NASDAQ Vocabulary: 熊市:bear 牛市: bull 股票: share 保证金,债券: security 交易所: exchange 经纪人: broker 商品: commodity 货币: currency 期货: feature 股息,红利: dividend 债券: bond 股票,股份: share 买卖的特权,选择权: option 普通股:common stock 优先股: preferred stock 派生 ...

    阅读全文
  20. 1.Nouns 名词是表示人或事物名称的词,通常要与冠词连用。 例如: the bus (公共汽车)   the apple (苹果) 有些名词仅有单数形式。 例如: The information is positive.   (信息是有利的。)   ...

    阅读全文