Java
-
AmazonSQS and Spring for messaging queue
The next post will demonstrate how to use Spring JMS templates and DLMC’S together with AmazonSQS API in order to place…
Read More » -
An Annotation Nightmare
@XmlElementWrapper(name="orders") @XmlJavaTypeAdapter(OrderJaxbAdapter.class) @XmlElements({ @XmlElement(name="order_2",type=Order2.class), @XmlElement(name="old_order",type=OldOrder.class) }) @JsonIgnore @JsonProperty @NotNull…
Read More » -
Project Student: Persistence With Spring Data
This is part of Project Student. Other posts are Webservice Client With Jersey, Webservice Server with Jersey and Business Layer.…
Read More » -
Memory leaks and memory management in Java applications
One of the more prominent features of the Java platform is its automatic memory management. Many people translate this feature…
Read More » -
Java EE 7 and WebSocket API for Java (JSR 356) with AngularJS on WildFly
This blog post describes the Java API for WebSocket Protocol (JSR 356) (which is one of four newest JSRs for…
Read More » -
Determining Presence of Characters or Integers in String with Guava CharMatcher and Apache Commons Lang StringUtils
A recent Reddit post asked the question, “Is there a predefined method for checking if a variable value contains a…
Read More » -
Project Student: Webservice Server with Jersey
This is part of Project Student. Other posts are Webservice Client With Jersey, Business Layer and Persistence with Spring Data.…
Read More » -
Introduction To JUnit Theories
Have you ever read a mathematical theory? It typically reads something like this: For all a, b > 0 the…
Read More » -
(Part 2 of 3): Synopsis of articles & videos on Performance tuning, JVM, GC in Java, Mechanical Sympathy, et al
This is a continuation of the previous post titled (Part 1 of 3): Synopsis of articles & videos on Performance tuning,…
Read More »