gpt4 book ai didi

java - 无法在方法内部使用注释

转载 作者:行者123 更新时间:2023-12-02 04:59:59 29 4
gpt4 key购买 nike

我正在使用 jersey 在我的产品中实现 REST api 服务。为了获取表单参数值,我尝试在方法中使用 @FormParam 注释。但在 Eclipse 中它会抛出错误“该位置不允许使用注释 @FormParam”。

enter image description here

如何修复此错误?

最佳答案

不要将注释放在方法内。注释通常放在:

  • 类(class)
  • 方法和构造函数
  • 方法的参数

(however, more possibilities are available)

就您而言,annotate a parameter :

public String addUser(@FormParam("emailid") String emailid, 
@FormParam("password") String password) {
...
}

这使得 request.getParameter(...) 不再需要。

Check a full example.

关于java - 无法在方法内部使用注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28373628/

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