Category: Spring

Optional Spring @value

Spring provides the powerful annotation @value to set a default value expression for a field or method/constructor parameter. @value is mainly used to inject a property value from the applications.properties file into a Spring bean. This tutorial...

More

Install Spring IDE on Eclipse

Spring IDE is a set of plugins which are adding support for the popular application framework Spring to the Eclipse platform. This tutorial shows how to install Spring IDE on Eclipse. Installation Install STS...

More

Defining a proxy in Spring RestTemplate

By default, RestTemplate don’t use a proxy to make the http calls and if you work in an environment that requires one, you will encounter the following exception :

This tutorial will show two...

More