“错误:HttpStatus 无法解析为变量”如何解决?
Posted
技术标签:
【中文标题】“错误:HttpStatus 无法解析为变量”如何解决?【英文标题】:"Error: HttpStatus cannot be resolved to a variable" How to resolve This? 【发布时间】:2015-08-19 09:01:55 【问题描述】:我在第 2 行的以下代码中遇到错误:@ResponseStatus(HttpStatus.OK)
。错误是:“HttpStatus 无法解析为变量”。为此需要哪些进口?我是否缺少任何必要的 jar 文件?有什么帮助吗?
@RequestMapping( value = "/id", method = RequestMethod.GET )
@ResponseStatus(HttpStatus.OK)
@ResponseBody
public String validateUser( @PathVariable( "id" ) String id)
Return "User Validated"
【问题讨论】:
导入 org.springframework.http.HttpStatus;导入 org.springframework.web.bind.annotation.RequestMapping;导入 org.springframework.web.bind.annotation.ResponseBody;导入 org.springframework.web.bind.annotation.ResponseStatus;和 jar spring-web-4.1.6.RELEASE.jar 感谢 Safwan,首先导入解决了我的问题。这实际上应该在 Eclipse 快速修复建议窗口中。但这并不存在,因为原因不明。反正问题现在已经解决了。 我将添加为答案。 【参考方案1】:添加:
import org.springframework.http.HttpStatus;
【讨论】:
以上是关于“错误:HttpStatus 无法解析为变量”如何解决?的主要内容,如果未能解决你的问题,请参考以下文章