gpt4 book ai didi

java - Whitelabel 错误页面 - Spring Boot 应用程序中的错误

转载 作者:行者123 更新时间:2023-12-02 00:09:31 28 4
gpt4 key购买 nike

我在运行 Spring Boot 应用程序时收到“Whitelabel 错误页面”,即使在映射 URL 后也是如此。

我已经提到了我的 application.properties 文件和一个 Controller 文件

application.properties file

server.port=8087
server.servlet.context-path=/starts

spring.h2.console.enabled=true

---------------------------------------------

TestController.java file

package com.example.firstproject.Controller;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.example.firstproject.Entity.Employee;
import com.example.firstproject.Service.EmployeeService;

@RestController

public class TestController {
@Autowired
EmployeeService empService;

@RequestMapping("/save")
public int test(@RequestBody Employee emp) {
return empService.saveEmployee(emp);
//return 0;
}
@RequestMapping("/getAll")
public List<Employee> home() {
return empService.getAll();
}

@RequestMapping("/test")
public String test()
{
return "success";
}
}

我还附上了运行项目时遇到的错误图像 Whitelabel Error Page

我应该如何消除这个错误?

最佳答案

您的/save 映射是 POST 请求,需要 Employee 对象。您无法从浏览器 URL 调用它。浏览器调用仅是 GET 请求。您应该使用 Postman 之类的工具来发送 POST 请求。

关于java - Whitelabel 错误页面 - Spring Boot 应用程序中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58132135/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com