我是ActiveMQ的新手,我们有一个ActiveMQ Server else where location,我们无法通过tcp socket连接,但是能够使用REST命令来消息消息
http://admin:admin@localhost:8161/api/message?destination=queue://orders.input
我在ActiveMQ中有99K +消息,需要使用REST命令消费并需要存储在文本文件中,
import static com.jayway.restassured.RestAssured.given;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.apache.commons.codec.binary.Base64;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import com.dnb.e2e.automation.util.CommonUtil;
import com.dnb.e2e.automation.util.WebServiceUtil;
import com.jayway.restassured.RestAssured;
import com.jayway.restassured.config.SSLConfig;
import com.jayway.restassured.config.SessionConfig;
import com.jayway.restassured.response.Headers;
public class MQwithRest {
public static String getResponse() throws Exception
{
String url = "http://admin:admin@localhost:8161/api/message?destination=queue://SAMPLEQUEUE";
String response = "a";
while(response!=""){
try {
response = given().header("content-type", "application/json")
.request()
.config(RestAssured.config().sslConfig(new SSLConfig().allowAllHostnames()))
.when().get(url).asString();
System.out.println(response);
} catch (Exception e) {
e.printStackTrace();
}
}
return "empty";
}
public static void main(String args[]) throws Exception
{
System.out.println(MQwithRest.getResponse());
}
}
在上面的代码中,我在输出端显示消耗的消息。当我实现休息时,我每次只能消耗一条消息。
使用REST服务在单个会话中,任何身体能否帮助消费99k +消息?
答案 0 :(得分:1)
你也可以隧道JMS client over HTTP。 这样,您可以绕过网络中的任何非HTTP限制,仍然使用JMS术语。
使用捆绑的其他Web应用程序,您有点受限于检索邮件的语义。无论如何,你应该能够使用普通的HTTP / Rest来获取所有消息。只需使用循环来获取消息。