我从前端 Web 应用程序获取请求参数并相应地显示结果。
Map<String,Object> requestparms
testObj.setUserId(requestparms.get("userId") == null ? null :requestparms.get("userId").toString());
当我使用 restClient 进行测试时,出现以下错误:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<error incidentId="22854566" correlationId="922f4150-4636-4b94-8ac6-71f8ed1935c1">
<exceptionMessage>[Ljava.lang.String; incompatible with java.lang.String</exceptionMessage>
</error>
我试过了
String userId = String.valueOf(requestparms.get("userId"));
System.out.println("The value of variable is " +userId);
还是同样的错误。
你可以请人提供与它相关的帮助信息吗?
提前谢谢你,幸运