序 本文主要研究下rest api的设计。 设计准则 easy to use & hard to misuse 易用不易误用,也就是api设计不要太复杂,要简单易用,而且还不能容易用错。 least astonishment 简单就好,不要试图提供其他花哨、华丽的额外功能,比如对于时间类似的字符串参数,规定好一个输入格式即可,不要试图同时兼容多种格式输入...
序 本文主要研究一下eureka instance的lastDirtyTimestamp server端 lastDirtyTimestamp last timestamp when this instance information was updated. 即该instance在client端最后被修改的时间戳 instance的接口,除了更新meta以及cancelLease操作外,其他修改的操作都要带上lastDirtyTimestamp,比如eureka-core-1.8.8...
序 本文主要研究下springboot2的LoggersEndpoint 实例 GET /actuator/loggers {代码...} GET /actuator/loggers/com.example {代码...} POST {代码...} LoggersEndpointAutoConfiguration spring-boot-actuator-autoconfigure-2.0.1.RELEASE-sources.jar!/org/springframework/boot/actuate/autoconfigure/logging/Logge...