1. 7. Comparisons 比较 在英语中构成比较级的方式有两种:单音节的形容词可在词尾直接加 er,双音节或多音节的形容词则需使用副词 more 来构成比较级。 例如: old older   expensive more expensive 有些单词在构成比较级时需要双写最后一个辅音字母,有些以字母 y 结尾的单词则需要把 y 改作 i,再加 er。 ...

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

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

    阅读全文
  4. 23760

    English words and sentences are used in Software development & service management.   When developing cloud-based software, it is necessary to build in extra security during the software development lifecycle in order to reduce the ch ...

    阅读全文
  5. 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 ...

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

    阅读全文
  7.     《Live Coding #1 - Spring Cloud Eureka using Microservices - Example | Tech Primers Live Stream》:https://www.youtube.com/watch?v=rlS9eH5tEnY 《Designing Microservices using Spring Boot, Spring Cloud, Eureka and Zuul | #2 | Tech ...

    阅读全文
  8.     《Spring Boot Micro-services, Containers, and Kubernetes - How To》: https://www.youtube.com/watch?v=Bcs-inRnLDc ...

    阅读全文
  9. 30190

    etcd学习资料 《Etcd github官方》https://github.com/etcd-io/etcd 《Etcd 使用入门》https://www.hi-linux.com/posts/40915.html etcd简介 etcd是CoreOS团队于2013年6月发起的开源项目,它的目标是构建一个高可用的分布式键值(key-value)数据库。etcd内部采用raft协议作为一致性算法,etcd基于Go语言实现。 etcd作为服务发现系统,有以下的 ...

    阅读全文
  10. Raft是一种共识(consensus)算法。解决分布式系统的一致性问题的算法之一。 学习Raft算法,收集几个不错的文章和网站: raft算法动画演示: http://thesecretlivesofdata.com/raft/ raft算法官方:https://raft.github.io/ 《Zookeeper:分布式系统入门到实战》https://www.youtube.com/watch?v=BhosKsE8up8   分布式系统有一 ...

    阅读全文
  11. 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. ...

    阅读全文
  12. 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 ...

    阅读全文
  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框架生成pdf文档的示例时初识接触到了iText库,本文为学习iText简单提要. https://www.lowagie.com/iText/ 为项目出处,后来这个项目转化为商业版本,所以com.lowagie这个package再也不继续维护和开发了,转向了com.itext包,而对应的官方网站也改为了 https://itextpdf.com/en 。 如果继续学习和使用com.lowagie这个免费包,学习文档可以在此查到&nbs ...

    阅读全文
  15. 25710

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

    阅读全文
  16. 1. 这个Docker视频demo了一个Docker的应用场景: https://www.youtube.com/watch?v=YFl2mCHdv24 2. <<Kubernetes for Beginners - Docker Introduction>> 这个视频非错不错的解释了Docker解决的痛点以及其架构。 https://www.youtube.com/watch?v=rmf04ylI2K0 3. 《Introduction to Ku ...

    阅读全文
  17. 本文为学习官方文档的学习笔记,单纯知识点摘要。官方文档: 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 ...

    阅读全文
  18. 本文是学习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 ...

    阅读全文
  19. 学习内容源于 官方文档 https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#expressions   学习摘要: SpEL: Spring Express Language, a java expression language. Other known expression Language: OGNL, MVEL, JBoss EL ... ...

    阅读全文
  20. 本文为https://docs.spring.io/spring/docs/current/spring-framework-reference/core.htmlSpring学习过程中遇到的知识点 先记录后深入学习   Annotations 1. Java-based configuration  中提到了 @Configuration @Bean @Import @DependsOn   Resource Int ...

    阅读全文