闲来无事
Vi_1108
max
展开
-
Hibernate: @JoinTable with intermediary table
The abstract application’s scheme below which uses Hibernate as ORM.Every modern application has some domain models. They represent some objects such as cars, books, contacts, customers etc. For each...原创 2020-04-30 00:57:21 · 285 阅读 · 0 评论 -
RabbitMQ——入门常用方法参数
消息发布端发送消息的方法channel.basicPublish(exchangeName,routingKey,true,null, msg.getBytes());void basicPublish(String exchange, String routingKey, BasicProperties props, byte[] body) throws IOException;vo...原创 2019-11-28 17:37:00 · 1719 阅读 · 0 评论 -
RabbitMQ——消费端限流策略
自定义消息提供者import com.rabbitmq.client.Channel;import com.rabbitmq.client.Connection;import com.rabbitmq.client.ConnectionFactory;import java.io.IOException;import java.util.concurrent.TimeoutExcept...原创 2019-11-28 17:08:48 · 490 阅读 · 0 评论