February 15, 2017

Java - How to Timeout JDBC Queries
Learn how to set timeouts for JDBC queries to prevent indefinite blocking. This guide covers configuring timeouts on individual statements, applying global timeouts at the driver level, and setting timeouts using Spring's JdbcTemplate. Read More
by
Phee Jay
February 12, 2017

Tarlog - Eclipse Plugin for Windows
Tarlog is a plugin for eclipse that provides some useful features if you are working on a Windows machine. It allows you to Copy Path, Open Shell or Open Explorer on the selected file or folder in the project. It also allows changing the font of the editor through Ctrl++ and Ctrl-- keys. Read More
by
Phee Jay
February 09, 2017

Spring - Overriding Spring Beans with Aliases
This blog post discusses how to override Spring beans using aliases and the benefits of managing dependencies in Spring applications. Read More
by
Phee Jay
June 26, 2015

Spring MVC - ETags and Browser Cache
The blog post explains how ETags work to enhance browser caching efficiency, including their benefits and implementation in web development. Read More
by
Phee Jay
November 17, 2010

Spring MVC - How does @ModelAttribute Work?
The blog post explains how the @ModelAttribute annotation in Spring MVC is used to prepare model data and bind HTTP request data to a command object. It details the annotation's application on methods and method parameters, its processing sequence, and provides examples to illustrate its usage in various scenarios. Read More
by
Phee Jay
October 18, 2010

Spring MVC - What Is a SessionAttributeStore? When to Use It?
The blog post explains how to customize the storage of session attributes in Spring MVC by implementing a custom SessionAttributeStore. This approach addresses issues that arise when multiple forms use the same command object name, ensuring that each form's data is stored uniquely in the session. Read More
by
Phee Jay
October 18, 2010

Spring MVC - mvc:annotation-driven - What does it do?
Explains how mvc:annotation-driven in Spring MVC simplifies setup by auto-registering handler mappings, adapters, and message converters to enable annotation-based controllers. Read More
by
Phee Jay