/**
 * 测试post取参数
 * 
 * @return
 */
@POST
@Consumes("application/x-www-form-urlencoded")
public String testPost(MultivaluedMap<String, String> formParams) {
   //处理业务
 
所有的参数都在formParams 在这个对象中

相关文章:

  • 2022-12-23
  • 2021-07-22
  • 2021-06-04
  • 2021-09-25
  • 2022-01-16
  • 2021-09-15
  • 2021-12-20
  • 2022-12-23
猜你喜欢
  • 2021-11-03
  • 2022-12-23
  • 2022-12-23
  • 2021-11-22
  • 2022-01-29
相关资源
相似解决方案