Monday 27 January 2020

Spring REST: @RequestMapping: Map multiple routes to same controller method


@RequestMapping has a String[] value property, using this you can map multiple routes to single controller method.

@RequestMapping(value = { "/", "/hello", "/welcome" })
public String home() {
         return "Hello World";
}

Find the below working application.

HomeController.java
package com.sample.app.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HomeController {

 @RequestMapping(value = { "/", "/hello", "/welcome" })
 public String home() {
  return "Hello World";
 }
}


App.java
package com.sample.app;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class App {
 public static void main(String[] args) {

  SpringApplication.run(App.class, args);

 }
}


pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelVersion>4.0.0</modelVersion>
 <groupId>springRest</groupId>
 <artifactId>springRest</artifactId>
 <version>1</version>

 <parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.1.6.RELEASE</version>
 </parent>

 <name>springbootApp</name>
 <url>http://maven.apache.org</url>

 <properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 </properties>

 <dependencies>

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
  </dependency>

 </dependencies>
</project>


Total project structure looks like below.

Run App.java.


Open the url ‘http://localhost:8080/’, you will see below screen.


Open the url ‘http://localhost:8080/welcome’, you will see below screen.




Open the url ‘http://localhost:8080/hello’, you will see below screen.
You can download complete working application from this link.


Previous                                                    Next                                                    Home

No comments:

Post a Comment