gpt4 book ai didi

java - 创建名称为 'requestMappingHandlerMapping' 的 bean 时出错 - Spring Boot

转载 作者:行者123 更新时间:2023-12-04 10:46:55 26 4
gpt4 key购买 nike

我在运行时收到以下错误。

Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'scrcrdsController' method 
com.mastercard.qualityScore.controllers.ScrcrdsController#getSummary(String)
to {GET /api/v1/scrcrds/{id}}: There is already 'scrcrdsController' bean method
com.mastercard.qualityScore.controllers.ScrcrdsController#get(String) mapped.

我需要创建一个新的 api,它获取特定 id 的所有分数,或者可能是两个 id 的组合。
我该如何解决?请帮忙。

我的 Controller 如下-
@RestController
@RequestMapping("/api/v1/scrcrds")
public class ScrcrdsController {
@Autowired
private ScrcrdRepository scrcrdRepository;

//list all scrcrd records
@GetMapping
public List<Scrcrd> list() {
return scrcrdRepository.findAll();
}

//get summary of an employee
@GetMapping(value = "{id}")
public List<Scrcrd> getSummary(@PathVariable String id) {
return scrcrdRepository.findAllById(Collections.singleton(id));
}

//get scrcrd record by id
@GetMapping(value = "{id}")
public Scrcrd get(@PathVariable String id) {
return scrcrdRepository.getOne(id);
}

//create a new scrcrd record
@PostMapping
@ResponseStatus(HttpStatus.CREATED) //to get 201 response instead of 200
public Scrcrd create(@RequestBody final Scrcrd scrcrd) {
return scrcrdRepository.saveAndFlush(scrcrd);
}

//delete a scrcrd record
@RequestMapping(value = "{id}", method = RequestMethod.DELETE)
public void delete(@PathVariable String id) {
//Also need to check for children records before deleting
scrcrdRepository.deleteById(id);
}

//update a scrcrd record
@RequestMapping(value = "{id}", method = RequestMethod.PUT)
public Scrcrd update (@PathVariable String id, @RequestBody Scrcrd scrcrd) {
//because this is a PUT, we expect all attributes to be passed in. A PATCH would only need what attribute is being modified
//TODO: Add validation that all attributes are passed in, otherwise return a 400 bad payload
Scrcrd existingScrcrd = scrcrdRepository.getOne(id);
//attributes of emp are copied to existingScrcrd, emp_id, mgr_id, mgr_scr_dt and type_nam is not to be changed
BeanUtils.copyProperties(scrcrd, existingScrcrd , "emp__id", "mgr_id", "mgr_scr_dt", "type_nam");
return scrcrdRepository.saveAndFlush(existingScrcrd);
}
}

最佳答案

您创建了两个具有相同 GET 请求和端点的方法,即 /api/v1/scrcrds/{id} .解决方案是更改 *getSummary() 或 get() 请求之一的端点。在这里,我更改了 getSummary() 的端点.

    //get summary  of an employee
@GetMapping(value = "summary/{id}")
public List<Scrcrd> getSummary(@PathVariable String id) {
return scrcrdRepository.findAllById(Collections.singleton(id));
}

//get scrcrd record by id
@GetMapping(value = "{id}")
public Scrcrd get(@PathVariable String id) {
return scrcrdRepository.getOne(id);
}

关于java - 创建名称为 'requestMappingHandlerMapping' 的 bean 时出错 - Spring Boot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59662930/

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