Java
JAX-WS with Custom SSLSocketFactory
It’s very easy to configure custom SSLSocketFactory for JAX-WS web-service: just specify custom property referring to SSLSocketFactory bean. But there is …
WebJars: Easy Packaging Client Libraries
When developing java web application it is often annoying to manage third-party javascript libraries. Especially, when it is necessary to upgrade some of them. …
Jolokia: HTTP/JSON bridge for JMX
Very often there is a need to monitor the Java application server. For example, external monitoring tool, like Nagios/Zenoss/Zabbix needs to get some metrics, …
JSON Validation with JSON Schema
JSON has became a de-facto standard for webservices, replacing XML web services. It has native support in web browser clients. That makes JSON is the standard …
JVM Profiling Mode
There is no sense to run profiler in instrumentation mode on a high load. Instead of using instrumentation you should use sampling mode. This article describes …
Netty: How to Initiate SSL Handshake From Client
I have had spent some time recently making netty 3.6 sending some message when connection has been established. What documentation suggests to do is to extend …