File Connectie added (mode: 100644) (index 0000000..b8d340f) |
|
1 |
|
package rabbitmq2; |
|
2 |
|
//import rabbitmq.Update; |
|
3 |
|
import com.rabbitmq.client.*; |
|
4 |
|
|
|
5 |
|
import java.io.IOException; |
|
6 |
|
import java.util.concurrent.TimeoutException; |
|
7 |
|
import org.json.JSONException; |
|
8 |
|
import rabbitmq2.CreateJsonObj; |
|
9 |
|
/** |
|
10 |
|
* |
|
11 |
|
* @author bouke |
|
12 |
|
*/ |
|
13 |
|
public class Connectie { |
|
14 |
|
private final static String QUEUE_NAME = "hello"; |
|
15 |
|
private static ConnectionFactory factory = new ConnectionFactory(); |
|
16 |
|
private static Connection connection = null; |
|
17 |
|
private static Channel channel; |
|
18 |
|
private static Connectie p; |
|
19 |
|
private final static String host = "localhost"; |
|
20 |
|
private final CreateJsonObj CJO = new CreateJsonObj(); |
|
21 |
|
|
|
22 |
|
|
|
23 |
|
public static Connectie instance() |
|
24 |
|
{ |
|
25 |
|
return p; |
|
26 |
|
} |
|
27 |
|
|
|
28 |
|
public Connectie() throws IOException, JSONException |
|
29 |
|
{ |
|
30 |
|
|
|
31 |
|
channel = connection.createChannel(); |
|
32 |
|
channel.queueDeclare(QUEUE_NAME, false,false,false,null); |
|
33 |
|
|
|
34 |
|
channel.basicQos(1); |
|
35 |
|
|
|
36 |
|
Consumer consumer = new DefaultConsumer(channel) { |
|
37 |
|
@Override |
|
38 |
|
public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) |
|
39 |
|
throws IOException { |
|
40 |
|
String message = new String(body, "UTF-8"); |
|
41 |
|
|
|
42 |
|
System.out.println(" [x] Received '" + message + "'"); |
|
43 |
|
} |
|
44 |
|
}; |
|
45 |
|
channel.basicConsume(QUEUE_NAME, false, consumer); |
|
46 |
|
} |
|
47 |
|
/** |
|
48 |
|
* @param args the command line arguments |
|
49 |
|
*/ |
|
50 |
|
public static void main(String[] args) throws IOException, TimeoutException { |
|
51 |
|
// TODO code application logic here |
|
52 |
|
|
|
53 |
|
factory.setHost(host); |
|
54 |
|
try |
|
55 |
|
{ |
|
56 |
|
connection = factory.newConnection(); |
|
57 |
|
p = new Connectie(); |
|
58 |
|
|
|
59 |
|
} |
|
60 |
|
catch (Exception ex) |
|
61 |
|
{ |
|
62 |
|
ex.printStackTrace(); |
|
63 |
|
System.exit(1); |
|
64 |
|
} |
|
65 |
|
// message = instance().CJO.JSONobj; |
|
66 |
|
System.out.println(instance().CJO.JSONobj); |
|
67 |
|
try |
|
68 |
|
{ |
|
69 |
|
Channel testChannel = connection.createChannel(); |
|
70 |
|
testChannel.basicPublish("", QUEUE_NAME, null, instance().CJO.JSONobj.toString().getBytes("UTF-8")); |
|
71 |
|
System.out.println(" [x] Sent '" + instance().CJO.JSONobj.toString() + "'"); |
|
72 |
|
testChannel.queueDelete(QUEUE_NAME); |
|
73 |
|
} |
|
74 |
|
catch(IOException ex) |
|
75 |
|
{ |
|
76 |
|
ex.printStackTrace(); |
|
77 |
|
} |
|
78 |
|
} |
|
79 |
|
|
|
80 |
|
|
|
81 |
|
} |