本文介绍了Java中AJP协议的实现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Apache中,您可以使用 mod_jk模块通过 AJP协议向Tomcat发送HTTP请求,该协议比HTTP本身效率更高。

From Apache, you can use the "mod_jk" module to send HTTP requests to Tomcat using the "AJP" protocol, which is far more efficient that HTTP itself.

我想通过Java程序执行相同的操作。我想使用 AJP,因为它具有良好的性能(而Tomcat毕竟还不错)。

I want to do the same, but from a Java program. I want to use "AJP" because of its good performances (and Tomcat is not bad after all).

有人知道的客户端的Java实现吗? AJP?

Does someone know about a Java implementation of the client side of "AJP" ?

推荐答案

有开源Apache (如果有人需要)可用:

There's open source Apache ajp-client available if someone needs it:

这篇关于Java中AJP协议的实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-28 05:36