Red5:如何处理HTTP?
Red5 能够处理 HTTP 请求。但是我如何在我的应用程序代码中处理它呢?
Red5 is capable of serving HTTP requests. But how can I handle one in my application code ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果您使用 Java EE 插件之一,Red5 能够处理 HTTP/HTTPS 请求。基于 Tomcat 的插件是默认的 Java EE 容器。对于问题的第二部分,我假设您想调用 ApplicationAdapter 类中的方法之一。要从 Servlet 或 JSP 执行此操作,您只需访问 ApplicationContext 并从那里获取对 ApplicationAdapter 的引用,如下所示:
JSP 示例
Yes, Red5 is capable of handling HTTP/HTTPS requests if you are using one of the Java EE plugins. The Tomcat-based plugin is the default Java EE container. For the second part of your question I assume you want to call one of the methods in your ApplicationAdapter class. To do that from a Servlet or JSP you simply need to access the ApplicationContext and from there get a reference to the ApplicationAdapter like so:
JSP Example