Spring Boot 控制器不工作 404 错误

Posted

技术标签:

【中文标题】Spring Boot 控制器不工作 404 错误【英文标题】:Spring Boot Controllers not working 404 error 【发布时间】:2020-10-11 17:36:26 【问题描述】:

我正在开发一个 Spring Boot 应用程序,但我的端点根本不工作。我得到下一个问题:


    "timestamp": "2020-06-21T21:12:39.716+0000",
    "status": 404,
    "error": "Not Found",
    "message": "No message available",
    "path": "/prduct/jjjk"

这是我项目的结构:

如您所见,控制器在同一路径中是 Application 类的子包,但未扫描。

package com.mercadolibre.mutants.controllers;

import com.mercadolibre.mutants.entities.Product;
import com.mercadolibre.mutants.repositories.ProductRepository;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ProductController 

  @Autowired
  ProductRepository productRepository;

  @GetMapping("/prduct/id")
  public ResponseEntity<Product> findById(@PathVariable("id") String id) 
    Optional<Product> p = productRepository.findById(id);
    return ResponseEntity.ok(p.orElse(null));
  

  @PostMapping(value = "/products", consumes = "application/json")
  public ResponseEntity<Product> save(@RequestBody Product p) 
    Product result = productRepository.save(p);
    return ResponseEntity.ok(result);
  

这是我的应用程序类:

package com.mercadolibre.mutants;

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

@SpringBootApplication(scanBasePackages = "com.mercadolibre.mutants")
public class MutantsApplication 

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


我无法确定问题或我缺少什么。有什么想法吗?

【问题讨论】:

尝试在ProductController上方添加@RequestMapping("/") 只要确保/prduct/id 是故意的,而不是/product/id。如果是,您在到达端点时会相应地使用它。 【参考方案1】:

/product/idProductController.java中的rest api中删除产品前的斜杠

将其更改为product/id 并再次运行。

【讨论】:

您在没有任何证据的情况下提出此主张。为什么这会有所作为? 请仔细阅读-baeldung.com/spring-slash-character-in-url

以上是关于Spring Boot 控制器不工作 404 错误的主要内容,如果未能解决你的问题,请参考以下文章

带有 Maven Shade 插件的 Spring Boot - 未映射控制器(404 错误)

为啥 Spring Boot 中的 REST 控制器返回 HTTP 状态 404 – 未找到

Spring Boot Web 应用程序给出 500 内部服务器错误,而不是 404 未找到

Spring Boot制作个人博客-框架搭建(异常处理)

Spring Boot“无可用消息”错误(状态 = 404),

Spring boot 找不到我的模板视图出现意外错误(type=Not Found,status=404)