摘要:
依赖 <dependencies> <dependency> <groupId>org.eclipse.jdt</groupId> <artifactId>org.eclipse.jdt.core</artifactId> <version>3.13.0</version> </dependency 阅读全文
摘要:
zuul是springcloud的API网关。 入口也是springmvc的DispatcherServlet。 实际的handler是ZuulController,通过handleRequest方法调用了ZuulServlet的service方法来处理请求。 ZuulServlet就是一个普通的s 阅读全文
摘要:
实现这两个listener都可以进行自己的初始化逻辑。 InitializingBean.afterPropertiesSet 这个优先调用 ApplicationListener.onApplicationEvent 这个后调用他们分别由 AbstractApplicationContext.re 阅读全文
摘要:
最近花了一些时间自己实现解析nginx配置文件的功能,这里有个工具先记下以后用。 https://github.com/nginxinc/crossplane 阅读全文
摘要:
maven依赖 <dependency> <groupId>org.eclipse.jdt</groupId> <artifactId>org.eclipse.jdt.core</artifactId> <version>3.13.0</version></dependency>代码: import 阅读全文
摘要:
https://zhidao.baidu.com/question/1494951482361210539.html 阅读全文
摘要:
EventHandlerUtil 类的 iterateOverEventHandlers方法 for (Iterator i = handlerIterator; i.hasNext();){ EventHandler eventHandler = (EventHandler) i.next(); 阅读全文