日志中出现以下异常信息,程序中断退出。 目前参考别人的修改下面的配置,原来使用的hostname,改成IP,再观察观察。 advertised.listeners=PLAINTEXT://192.168.1.101:9092 参考: https://www.cnblogs.com/cyfonly/p ...
分类:
其他好文 时间:
2018-05-02 16:03:05
阅读次数:
170
首先检查:catalina.[date].log错误信息:信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found
分类:
其他好文 时间:
2018-04-09 11:19:40
阅读次数:
179
rabbitMQ 集群 单机多实例RABBITMQ_NODE_PORT=5673 RABBITMQ_SERVER_START_ARGS="-rabbitmq_management listener [{port,15673}] -rabbitmq_stomp tcp_listeners [61614 ...
分类:
其他好文 时间:
2018-03-26 16:03:40
阅读次数:
212
/** * Created by Mrzou on 2018/3/11. *///实现简单的订阅与发布模式的代码块export function pattern() { let currentListeners = [] function subscribe(type, listener) { if ...
分类:
其他好文 时间:
2018-03-11 21:12:55
阅读次数:
153
简介 Laravel 事件提供了简单的观察着模式实现,允许你订阅和监听应用中的事件。事件类通常存放在 app/Events 目录。 监听器存放在 app/Listeners. 如果你在应用中没有看到这些目录,不要担心,他们会在你使用Artisan命令生成事件和 监听器的时候自动创建。 事件为应用功能 ...
分类:
其他好文 时间:
2018-02-20 17:31:15
阅读次数:
288
public class Car { private String name ; private int x ; private int y ; private HashSet listeners = new HashSet(); public Car(String name, int x, int... ...
分类:
其他好文 时间:
2018-02-09 22:35:16
阅读次数:
200
严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener 严重: Error configuring application listener o ...
分类:
编程语言 时间:
2018-02-02 00:51:45
阅读次数:
185
故障现象:kafka有3个Partition分别为0,1,2,在实际运行中发现consumer只能收到Partition:0和Partition:1的数据,检查topic状态均正常。查找Partition::2的Leader为92,如下所示:进一步检查92的server.properties配置文件,发现advertised.listeners字段没有填写,填上后便恢复正常。如果advertise
分类:
其他好文 时间:
2018-01-09 14:39:35
阅读次数:
163
从模块化到微服务化从Pet Shop 到eShop on Container都是Microsoft在技术演进的路径上给开发者展示.Net的开发能力和架构能力的Sample工程,Petshop的时候更多的是展现应用的分层架构,设计的抽象与模块间的通讯。到了eShop on Container更多的关注... ...
分类:
其他好文 时间:
2018-01-08 16:44:47
阅读次数:
205
(1)滚动事件分类 列表的滚动一般分为两种: 1.手指按下 -> 手指拖拽列表移动 -> 手指停止拖拽 -> 抬起手指 2.手指按下 -> 手指快速拖拽后抬起手指 -> 列表继续滚动 -> 停止滚动 上面的过程的状态变化如下: 1.静止 -> 被迫拖拽移动 -> 静止 2.静止 -> 被迫拖拽移动 ...
分类:
其他好文 时间:
2017-12-28 15:02:20
阅读次数:
215