Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Long parameter 'houseId' is not present]
时间: 2023-11-24 08:02:20 浏览: 108
解决The type org.springframework.dao.support.DaoSupport cannot be resolved.bao报错
这个错误提示是由于在请求参数中缺少必要的参数"houseId",需要在请求中加上该参数,并传入相应的值。如果该参数是必要的,但是该值不能缺失,可以在控制器方法中使用@RequestParam注解将参数标识为必需项,例如:
```java
@GetMapping("/house")
public String getHouseInfo(@RequestParam("houseId") Long houseId) {
// ...
}
```
这样,如果请求中没有传入houseId参数,就会抛出MissingServletRequestParameterException异常。
阅读全文