为什么 Tomcat 使用反射来实现 Catalina 实例化
阅读Tomcat 7源码,我只是想知道为什么Tomcat实例Catalina并通过反射调用相关方法而不是简单地使用new
创建对象并直接调用方法?
Reading the Tomcat 7 source code, I just wonder why Tomcat instance Catalina and invokes the related methods by using reflection instead of simply using new
to create the object and calling the method directly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案在
Bootstrap
类的 javadoc 注释中:The answer is in the javadoc comment of the
Bootstrap
class: