WebSocket Support in Java EE 7
Connect to us ( @twitter | @facebook ) I am going to divide this post into following topics for ease of understanding to the readers: What is a WebSocket? JavaEE 7 Support for creating WebSocket end...
View ArticleJSON Processing in JavaEE 7- Using Streaming API
Connect to us ( @twitter | @facebook ) If you are wondering what JSON is (Read : What is JSON?), you might want to read this article of mine. Java didn’t have a support for JSON processing out of the...
View ArticleJSON Processing in JavaEE 7- Using Object Model API
Connect to us ( @twitter | @facebook ) In my previous post about JSON processing I introduced you to the sample application and then showed how one can make use of the Streaming API to parse the JSON...
View ArticleUsing Decoder With WebSocket In Java EE 7
Connect to us ( @twitter | @facebook ) This post is part of the series of posts covering different JavaEE 7 features. In the past I wrote about: Creating WebSocket using JavaEE 7 Parsing JSON using the...
View ArticleUsing Encoder With WebSocket in Java EE 7
Connect to us ( @twitter | @facebook ) In my previous post I wrote about using decoders with WebSocket. In the same post I mentioned about Encoders and that they are used for encoding the Java objects...
View ArticleManagedScheduledExecutorService for Implementing Concurrency Utilities in...
Connect to us ( @twitter | @facebook ) In my previous post you saw how to use the concurrency utilities in Java EE 7 by using the ManagedExecutorService. In this post we will have a look at a variant...
View ArticleCreating Managed Threads Using ManagedThreadFactory in Java EE 7 – Part 3
Connect to us ( @twitter | @facebook ) So far we have seen: In Part-1: Creating ManagedExecutorService to submit a single task or a list of tasks where each task would be an implementation of either...
View ArticleBean Validation in Java EE 7 – Creating Custom Constraints and Validations
Connect to us ( @twitter | @facebook ) In my previous post I showed how one can make use of the default constraints provided by the Bean Validation API in validatng the model data. Bean Validation API...
View Article