All Questions
2 questions
0
votes
0
answers
484
views
Testing REST API with nested object creation and endpoint transactionality
I'm building a location based REST API using Spring Boot, and I have run into a bit of a testing philosophy question. I have an object called Location that, among other things, requires a Google ...
6
votes
2
answers
6k
views
Is it bad practice to call another API from a Filter?
I am using Java, Spring and Jersey.
I have a REST API A which receives a query parameter called q and sends this to another API B to get a response.
I need to implement a change where I first need ...