Java Spring boot REST API project often demands to have responses in a particular format and hence this session will be extremely useful for java spring boot developers who are particularly developing REST APIs. Kindly watch the complete session to get complete benefit from this. GitHub link for CloudVendorApi code - github.com/thinkconstructive/rest-api-spring-boot-demo/tree/master Happy learning. Cheers, Esha
thanks mam for showing the new way to achieve custom response... i have achieved this result by creating lots of DTO classes...but now i got this technic...thanks again for creating awesome content...
Hi, Currently, I don't have Spring framework video available on my channel. That will surely be available in future here. Meanwhile, you can refer "spring.io/" website and also can read book - "Spring in Action" by Manning publication.
Hi Your explanation is very clear. I have few questions.. Why don't you just create generic object contains T response, String status and String message? In addition, you can use Lombok builder or to implement builder by yourself..
@@sebastiansagrario8684 Use the following Java annotations on top of the the Response handler class. @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL) and @JsonSerialize(include = JsonSerialize.Inclusion.NON_EMPTY) Which will elemenate the Null and Empty values in the output, but make sure that you also use the field validation annotations to don't miss out the mandate fields. This might be helpful for you..! Happy Learning.. 😊
How about the order of elements determined because in map you provided elements in order data, http status and message but in response getting in reverse order.
I did this and it worked! public List getAllCloudVendorDetails(){ //return new CloudVendor("C1","Vendor name","Address one","xxxxxxx"); List list = cloudVendorService.getAllCloudVendors(); List newList = new ArrayList(); for (CloudVendor cloudVen : list){ System.out.println(cloudVen + ""); newList.add(ResponseHandler.responseBuilder ("Response Vendor details are given here", HttpStatus.OK,cloudVen)); } return newList;
For providing customise responses as discussed in the session, Custom response handling is better otherwise simple ResponseEntity is sufficient. It depends on the requirement.
Hi can you make session on Spring security For enterprise level application That would be helpful for me and my friends Who are working on the project Thanks in anticipation Yarra Raviteja
Thank you for how to create custom json response. could you make a video to get and access C# json response in springboot app using java. because C# json response contains meta field, data field and status field.
Hello ma'am I think you also perform change on service package like CloudVendorService and it's implementation class because this method comes from service package. Thank you.
Java Spring boot REST API project often demands to have responses in a particular format and hence this session will be extremely useful for java spring boot developers who are particularly developing REST APIs. Kindly watch the complete session to get complete benefit from this.
GitHub link for CloudVendorApi code -
github.com/thinkconstructive/rest-api-spring-boot-demo/tree/master
Happy learning.
Cheers,
Esha
Learning lot from your sessions. Thank you
Welcome 😊
Very simple to the point JSON Response Handling example!
Glad you liked it!
Stay connected and please share with others too. Thank you 😊
thanks mam for showing the new way to achieve custom response... i have achieved this result by creating lots of DTO classes...but now i got this technic...thanks again for creating awesome content...
Welcome 😊
Glad that it helped you. Thanks 😊
Thanks Mam.. U have helped me save a lot of time in handling this usecase.
Glad it is helpful for you.
Please share with others too 😊
Very Usefull..Thanks For Sharing Mam.....Very Informative Content.
Thank you so much 😊
Please share with others too.
i learned a lot from you madam ji, tqsm🌹
Thank you so much 😊
Stay connected and please share with others too.
could you please make a video about oauth2 with okta using springboot asap ,its help me alot for me ,you are my savior@@ThinkConstructive
great mam, clear explanation
Thank you so much 🙂
Please share with others too
Great Teaching way
Thanks 😊
Stay connected and please share with others too 😊
Thank you ma'am for your awesome lecture very well explained
Thank you so much!
Most Welcome ❤️
Please stay connected and share channel details with others too, thanks 😊
Thanks a lot 🙌🙌
Welcome😊 Stay connected
Please share with others too.
Thank you for knowledge sharing
Thanks 😊
Stay connected and please share with others too 😊
@@ThinkConstructive yes sure
Hi, where to learn Spring from ? Do you have a youtube video for that
Hi,
Currently, I don't have Spring framework video available on my channel. That will surely be available in future here.
Meanwhile, you can refer "spring.io/" website and also can read book - "Spring in Action" by Manning publication.
@@ThinkConstructive thanks for your reply
@@ThinkConstructive which is the best book that you would suggest for Spring Boot. Please reply
Hi
Your explanation is very clear.
I have few questions..
Why don't you just create generic object contains T response, String status and String message? In addition, you can use Lombok builder or to implement builder by yourself..
Hi,
Thanks 😊
There are different ways to do this. I discussed one of them. Lombok and Generics can be another way to do this.
Excellent
Thank you so much 😀
Stay connected and please share with others too 😊
👍
Very very helpful.Thanks
Hi how can we write the responses for each endpoint in a file and put it in folder resources..thanks
Hi,
resource folder file needs to be read by response provider and use appropriate response in ResponseHandler.responseBuilder (message.
its ok to return null as a responseObject and a status code 404 when you cant find that object in the database? thanks you!
Best practice is to return a proper response message back for example - "Request data does not exist" with status code 404
@@sebastiansagrario8684 Use the following Java annotations on top of the the Response handler class. @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL) and @JsonSerialize(include = JsonSerialize.Inclusion.NON_EMPTY)
Which will elemenate the Null and Empty values in the output, but make sure that you also use the field validation annotations to don't miss out the mandate fields.
This might be helpful for you..! Happy Learning.. 😊
How about the order of elements determined because in map you provided elements in order data, http status and message but in response getting in reverse order.
could you please give me one session about doing Json Pars in spring boot application and simplifies?
Sure, I will create a new video on this
Thank you mam
Most welcome 😊
Please share with others too
thank you
Welcome 😊
Please make a video on facade layer, dao and dto
Thanks for this. How do we get the same kind of Json response for getAllCloudVendorDetails?
I will get each cloud from the list and send it to the response entity and return ?
I did this and it worked!
public List getAllCloudVendorDetails(){
//return new CloudVendor("C1","Vendor name","Address one","xxxxxxx");
List list = cloudVendorService.getAllCloudVendors();
List newList = new ArrayList();
for (CloudVendor cloudVen : list){
System.out.println(cloudVen + "");
newList.add(ResponseHandler.responseBuilder
("Response Vendor details are given here", HttpStatus.OK,cloudVen));
}
return newList;
Using ResponseEntity or using custom responses, which one is better ?
For providing customise responses as discussed in the session, Custom response handling is better otherwise simple ResponseEntity is sufficient. It depends on the requirement.
Awesome tutorial. What about getting back all cloud vendors in the form of an array plus status and message?
Hi can you make session on
Spring security
For enterprise level application
That would be helpful for me and my friends
Who are working on the project
Thanks in anticipation
Yarra Raviteja
Hi,
Sure, I will include Spring Security in my plan.
Thanks
Thank you for how to create custom json response.
could you make a video to get and access C# json response in springboot app using java.
because C# json response contains meta field, data field and status field.
Hello ma'am
I think you also perform change on service package like CloudVendorService and it's implementation class because this method comes from service package.
Thank you.
Perform change on method signature
so good
Thanks 😊