avatar
kezhenxu94
Blogging about dev, tips & tricks, tutorials and more

Tutorial

  • Published on
    API documentation is a critical intermediate between the API developers and API consumers, it helps the API consumers to understand how to use the API, what to expect from the API, and how to troubleshoot the API. But as the API evolves, it's very likely that the documentation is easy to get outdated, in this post, I'll show you how to make sure your API documentation is always up-to-date (and accurate!!!) with Spring REST Docs.
  • Published on
    Caching is a critical technology in many high performance scalable applications. There are many choices in caching framework, including Ehcache, Memcache, cache2k etc. In this post, we are going to build one on our own, to learn what cache really does.