摘要:
Rebbitmq 是采用erlang语言开发,运行一定要有erlang环境 点对点通信 一对一消费 发布订阅通信 一对多消费,可以发送多个消费者,消费 高级对列高性能 交换机(直连交换机,扇型交换机。。。。),相当对zuul网关,ngxin,转发 如果不绑定消费者,消息会被丢失(交换机) 路由模式 在交换机设置一个key value值 可以绑定多个 消费者key value值对应,才能拿... 阅读全文
摘要:
package org.sc.goods.manage.aop; import java.io.IOException; import java.io.PrintWriter; import java.lang.reflect.Method; import java.util.Map; import 阅读全文
摘要:
LogKit.error("IP连接"); Socket socket = new Socket("192.168.1.172", 5001); OutputStream outputStream = socket.getOutputStream(); PrintStream dos = new PrintStrea... 阅读全文
摘要:
package com.cn.Tetute.uitl; import java.awt.image.BufferedImage; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; impor... 阅读全文
摘要:
ActiveMQ默认启动到8161端口,启动完了后在浏览器地址栏输入:http://localhost:8161/admin要求输入用户名密码,默认用户名密码为admin、admin, 这个用户名密码是在conf/users.properties中配置的。输入用户名密码后便可看到的ActiveMQ控 阅读全文
摘要:
首先引入maven依赖,我这里用的5.0的 <dependencies> <!-- https://mvnrepository.com/artifact/io.netty/netty-all --> <dependency> <groupId>io.netty</groupId> <artifact 阅读全文
摘要:
public static void main(String[] args) throws IOException { System.out.println("tcp协议服务器端启动.."); ExecutorService newCachedThreadPool = Executors.newCachedThreadPool();//线程池 // 创建服务器端连接 ServerSocket s... 阅读全文
摘要:
必须掌握Java的反射机制和自定义注解 阅读全文
摘要:
@Test public void testFindUserByName(){ //通过criteria构造查询条件 UserExample userExample = new UserExample(); userExample.setOrderByClause("username asc"); 阅读全文
摘要:
function login() { if (event.keyCode == 13) { $("#login").click(); } } 阅读全文