HTTP Get with 204 No Content: Is that normal
问题 Is it a normal occurrence for an HTTP GET Request to have a response with status code 204 - No Content ? Like, is this semantically correct with respect to what an HTTP GET is supposed to accomplish? I know that a 204 - No Content is okay for an HTTP POST Request . For GET request, if no data is to be sent back, is the 204 status code appropriate? Should I use 404, or just stick to 200 for success but have an empty response? The use case for this question is a Java application that I am