Java
-

Difference between @RestController and @Controller Annotation in Spring MVC and REST
The @RestController annotation in Spring MVC is nothing but a combination of the @Controller and the @ResponseBody annotation. It was…
Read More » -

Java Command-Line Interfaces (Part 13): JArgs
JArgs 1.0 has the distinction of being the subject of the 13th post of my series on parsing command line…
Read More » -

What does the InternalResourceViewResolver do in Spring MVC?
The InternalResourceViewResolver is an implementation of ViewResolver in Spring MVC framework which resolves logical view name e.g. "hello" to internal…
Read More » -

[MEGA DEAL] The 2017 Complete Java Bundle (96% off)
Embark On Your Coding Odyssey with A Deep Dive (58 Hours!) Into the Most Commonly Used Programming Language Hey fellow…
Read More » -

What causes OutOfMemoryError?
OutOfMemoryError might be thrown when one of the following circumstances occurs: JVM run out of native memory Java heap is…
Read More » -

What are JAX-RS Annotations? (Part 2)
Overview of JAX-RS Annotations (Part 2) This is a three-part series looking at the annotation that is used to implement REST…
Read More » -

What are JAX-RS Annotations?
Overview of JAX-RS (Part 1) The JAX-RS API forms an important part of the Java EE platforms commitment to provide…
Read More » -

Java Command-Line Interfaces (Part 12): CLAJR
The featured library for my twelfth post on processing command-line arguments in Java is Command-Line Arguments with Java Reflection (CLAJR).…
Read More » -

Safepoints
Safepoints There are two logical groups of threads in Java application: application threads performing application logic threads performing GC When…
Read More »

