我们在使用 nginx 做反向代理的时候,通常会配置 upstream,server,location。这篇文章不会对 nginx 的配置做深入的探讨,主要关注点在于:
当 nginx 收到一个请求时,是如何进行响应的?包括:
- 如何选择 server 进行响应
- 如何 match location
- 如何进行错误处理
如何选择 server 进行响应
- 用请求 Header 中的 host 字段与 server_name 进行匹配
- 如果能正确匹配ϼ..
与 Reflection
初遇,是在 Java 中,年代已经有些久远。
犹记那时,风轻云淡,佳酿红颜,恰同学少年。
现今打开 Oracle 官网,上面是这样描述 Reflection
:
It allows an executing Java program to examine or "introspect" upon itself, and manipulate internal properties of the program. For example, it's possi...