Skip to content
Advertisement

@ResponseBody returns empty object

When I use below to get the user object it works just fine.

JavaScript

Above gives me a response back as:

JavaScript

Now, I am trying to search based on UUID(4) using this:

JavaScript

This doesn’t return anything. No error, no warning whatsoever. While this gives me all the details I need:

JavaScript

This is what I have in my Repository

JavaScript

and Entity

JavaScript

Question: Why my controller method @GetMapping("/findOneUsingUUID") is not returning anything? Any relevant info/help/link will be greatly appreciated.

Update (for sidgate’s comment/question): I tested this inside another controller method. Like this:

JavaScript

Update 2:

Now I have the following in my Controller:

JavaScript

So my URL becomes similar to this:

JavaScript

But now getting 404 error in my browser console.

Update 3:

Per Dale’s suggestion, I fixed it and checked in code to github-repo. All works fine now.

Advertisement

Answer

I tried this out based on you GitHub code and the API worked flawlessly for me via Postman. The problem might be with the way you are invoking the API.

In the comments section you mentioned that your are passing values to controllers as path variables. But you haven’t added the @PathVariable annotation in the controller method. So the controller method is expecting a query paramter, not a path variable. Please try invoking the API by passing UUID as parameter.

EDIT

Looking at your GitHub code, you are calling the API as url: "/findOnebyId?id="+ id.

JavaScript

In this controller method, you are expecting useruuid as query parameter. But in your datatables.html file, you are sending the query parameter as id.

So you can remove the @PathVariable annotation and correct the query parameter name in the AJAX request.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement