简体   繁体   English

Spring Boot-配置上下文路径

[英]Spring boot - configure context-path

I have configured application.properties‬ as explained here with : 我已经配置application.properties‬作为解释这里有:

server.servlet.context-path=/test

And in my @RestController I have a simple a simple @RequestMapping : 在我的@RestController中,我有一个简单的@RequestMapping

@RequestMapping(value = "/products", method = RequestMethod.GET)

But still when sending a request to http://localhost:8080/test/products I get tomcat - 404 response. 但是仍然在向http:// localhost:8080 / test / products发送请求时,我得到了tomcat-404响应。

Full code: 完整代码:

package com.siemens;

import java.util.HashMap;
import java.util.Map;

import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;


@RestController
public class ProductServiceController {
   private static Map<String, Product> productRepo = new HashMap<>();
   static {
      Product honey = new Product();
      honey.setId("1");
      honey.setName("Honey");
      productRepo.put(honey.getId(), honey);

      Product almond = new Product();
      almond.setId("2");
      almond.setName("Almond");
      productRepo.put(almond.getId(), almond);
   }



   @RequestMapping(value = "/products", method = RequestMethod.GET)
   public ResponseEntity<Object> getProduct() {
      return new ResponseEntity<>(productRepo.values(), HttpStatus.OK);
   }
}

pom.xml: pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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>com.example</groupId>
    <artifactId>siemens</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>

    <name>siemens</name>
    <description>Demo project for siemens</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.4.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

@SpringBootApplication: @SpringBootApplication:

@SpringBootApplication
public class SiemensApplication {

    public static void main(String[] args) {
        SpringApplication.run(SiemensApplication.class, args);
    }
}

Running on tomcat 9, if there is more code or config needed please comment below, thank you. 在tomcat 9上运行,如果需要更多代码或配置,请在下面评论,谢谢。

Any request should 'know' how to get to this controller. 任何请求都应该“知道”如何到达该控制器。 I would suggest trying this: 我建议尝试一下:

@RestController
@RequestMapping("psc")
public class ProductServiceController {


    @RequestMapping(value = "products", method = RequestMethod.GET)
    public ResponseEntity<Object> getProduct() {
    return new ResponseEntity<>(productRepo.values(), HttpStatus.OK);
    }

this way you can send a GET request, to the following url: http://localhost:8080/test/psc/products 这样,您可以将GET请求发送到以下URL: http:// localhost:8080 / test / psc / products

  1. add the @RequestMapping annotation to specify the path to this class(controller) 添加@RequestMapping批注以指定此类的路径(控制器)
  2. get rid of the "/" on every @RequestMapping path value (just a cosmetic suggestion) 删除每个@RequestMapping路径值上的“ /”(只是一个修饰性建议)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM