java.lang.NumberFormatException: 调用端口 curl 调用时为空
java.lang.NumberFormatException: null when calling a port curl call
我有以下 class:
@CrossOrigin()
@PostMapping(path = "/xcpd", produces = "application/json; charset=utf-8")
protected String xcpd(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
JSONObject jsonData = null;
JSONObject jObj = new JSONObject();
JSONObject responseXCPD = null;
int user_id = -1;
int pid = -1;
try {
if ((jsonData = new JSONObject(getJSONString(request))) != null) {
if (jsonData.has("country_code") && jsonData.has("identifier")) {
// User data
user_id = Integer.valueOf(request.getParameter("user_id"));
String rolename = String.valueOf(request.getParameter("rolename"));
....
}
}
}
}
我正在使用以下 curl 调用来调用此端点:
curl -X POST -H "Content-Type: application/json" http://localhost:8083/xcpd -d '{"user_id":"1",
"country_code":"IE",
"rolename": "doctor",
"identifier": "1.1.1.1"
}'
当我调用 curl 示例时,我收到此行 user_id = Integer.valueOf(request.getParameter("user_id"));
的错误 java.lang.NumberFormatException: null
。我想这意味着字符串 user_id
是空的,不能转换为整数。
有什么帮助吗?
您正在尝试解析空值。如果你想解析请求的主体,有一种简单的方法可以做到这一点。在你的 xcpd 方法中,一个用 @RequestBody 注释的参数,它将自动转换为一个 java 对象。 getParameter 不是从请求正文中获取字段的正确方法。
参见:https://www.baeldung.com/spring-request-response-body
我认为您应该使用 jsonData
对象来访问 user_id
。
getParameter方法见文档部分:
For HTTP servlets, parameters are contained in the query string or posted form data.
我有以下 class:
@CrossOrigin()
@PostMapping(path = "/xcpd", produces = "application/json; charset=utf-8")
protected String xcpd(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
JSONObject jsonData = null;
JSONObject jObj = new JSONObject();
JSONObject responseXCPD = null;
int user_id = -1;
int pid = -1;
try {
if ((jsonData = new JSONObject(getJSONString(request))) != null) {
if (jsonData.has("country_code") && jsonData.has("identifier")) {
// User data
user_id = Integer.valueOf(request.getParameter("user_id"));
String rolename = String.valueOf(request.getParameter("rolename"));
....
}
}
}
}
我正在使用以下 curl 调用来调用此端点:
curl -X POST -H "Content-Type: application/json" http://localhost:8083/xcpd -d '{"user_id":"1",
"country_code":"IE",
"rolename": "doctor",
"identifier": "1.1.1.1"
}'
当我调用 curl 示例时,我收到此行 user_id = Integer.valueOf(request.getParameter("user_id"));
的错误 java.lang.NumberFormatException: null
。我想这意味着字符串 user_id
是空的,不能转换为整数。
有什么帮助吗?
您正在尝试解析空值。如果你想解析请求的主体,有一种简单的方法可以做到这一点。在你的 xcpd 方法中,一个用 @RequestBody 注释的参数,它将自动转换为一个 java 对象。 getParameter 不是从请求正文中获取字段的正确方法。 参见:https://www.baeldung.com/spring-request-response-body
我认为您应该使用 jsonData
对象来访问 user_id
。
getParameter方法见文档部分:
For HTTP servlets, parameters are contained in the query string or posted form data.