• Menu
  • Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

JavaBeat

Java Tutorial Blog

  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)
  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)

Spring Annotations

New Features in Spring Boot 1.4

Difference Between @RequestParam and @PathVariable in Spring MVC

February 20, 2023 //  by Kenya Cardenas

@RequestParam and @PathVariable @RequestParam and @PathVariable annotations are used for accessing the values from the request. Both the the annotations have the significant purpose and use respectively. The key difference between @RequestParam and @PathVariable is that @RequestParam used for accessing the values of the query parameters where as @PathVariable used for accessing the values from …

Category: Spring FrameworkTag: @PathVariable, @RequestParam, Application.java, Spring Annotations, SpringMVCController.java, WebMvcConfig.java

New Features in Spring Boot 1.4

Spring Annotations [Quick Reference]

June 19, 2022 //  by ClientAdministrator

Below is the summary of the spring annotations that people use most frequently across spring applications. Spring Framework 2.5 added the annotations to the framework. Before that, the XML files defined every configuration. Annotations became more convenient to reduce the XML configuration files and annotate the classes and methods with different annotations used at the …

Category: Spring FrameworkTag: Spring Annotations, XML files

New Features in Spring Boot 1.4

@RequestMapping Annotation in Spring MVC

March 22, 2016 //  by Krishna Srinivasan

@RequestMapping annotation is used for mapping web requests to particular handler classes or handler methods. The classes or methods that are annotated with @RequestMapping will be scanned and registered as the URI mappings for that specific class or method. Any future web requests will be redirected to that class or method. This annotation is part …

Category: Spring FrameworkTag: Spring Annotations

New Features in Spring Boot 1.4

@EnableCaching Annotation in Spring

March 17, 2016 //  by Krishna Srinivasan

@EnableCaching annotation is the annotation-driven cache management feature in the spring framework. This annotation has been added to the spring since the version 3.1. If you are using this annotation, then you are not required to write the XML bean definitions for cache manager. When you annotate your configuration class with @EnableCaching annotation, this triggers …

Category: Spring FrameworkTag: Spring Annotations

New Features in Spring Boot 1.4

@Profile Annotation in Spring 4

July 3, 2015 //  by Krishna Srinivasan

This tutorial explain how to enable profiles in your spring application for different environments. Also this tutorial explains the new improvements in the Spring 4.0 release and how it is different from the older releases. If you are working for a real time projects, it is often basic requirement to have the different environments like …

Category: Spring FrameworkTag: Spring Annotations

New Features in Spring Boot 1.4

Spring MVC Annotations : @Component, @Repository, @Service

June 28, 2015 //  by Krishna Srinivasan

This tutorial explains the advantage of using the spring mvc annotations @Component, @Repository and @Service and how to use them.  Spring Annotations are one of the nice feature to configure the Spring MVC applications. There are wide variety of annotations are define in the Spring Framework. In our earlier tutorials many of the most widely …

Category: Spring FrameworkTag: Spring Annotations

Spring : How To Load Properties File using @Value Annotation

May 3, 2014 //  by Krishna Srinivasan

This example shows how to load the properties file values using the @Value annotation. Accessing the property file values in the Spring application involves the following steps: Add the property file details to spring bean configuration file. You have to use the “classpath” prefix if you want to load the files from the classpath. Create …

Category: Spring FrameworkTag: Spring Annotations

New Features in Spring Boot 1.4

@Import Annotation in Spring Framework

October 28, 2013 //  by Krishna Srinivasan

In my previous article I have explained about the JavaConfig in Spring 3.0. It is a new way of configuring the bean definitions without using the traditional XML files. Also I have listed the annotations defined as part of JavaConfig approach. If you are beginner in spring framework, we have huge collection of spring tutorials …

Category: Spring FrameworkTag: Spring Annotations

  • Go to page 1
  • Go to page 2
  • Go to Next Page »

Primary Sidebar

Follow Us

  • Facebook
  • Pinterest

FEATURED TUTORIALS

How to Implement getActiveCount() Method of ThreadPoolExeceutor in Java

What is new in Java 6.0 Collections API?

The Java 6.0 Compiler API

Introductiion to Jakarta Struts

What’s new in Struts 2.0? – Struts 2.0 Framework

JavaBeat

Copyright © by JavaBeat · All rights reserved
Privacy Policy | Contact