Programming
Conditional Java Configurations in Spring Framework
Spring Framework offers very flexible means for binding application components. Externalizable properties, composite configuration, nested application contexts …
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 …
Useful Code Templates for Jetbrains Idea
Jetbrains Idea is a perfect IDE (sorry, Eclipse fans). But, like every tool, sometimes it needs some customization to fit your needs. Today I want to show how …
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. …
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 …