Netty Websocket SSL


This is a small guide on how to create a Netty Websocket client/server application, communicating over SSL(wss). This guide showcases how to use JKS keystores/truststores, as they are the most common way of storing private keys and certificates in the Java world. This guide will show:  How to create a…

Identifying a high-CPU Java Thread


High CPU utilization Java application Every now and then we find ourselves in situations when a single Java process is consuming a high percentage of CPU. After investigating and ruling out high CPU because of continuous GC cycles or other pathogenic reasons, we find ourselves in a situation that we…