Amazon web services – Java How to test api gateway endpoints without deploying
I want to learn how to unit test API gateway endpoints, or just in general, before deploying the API. For example, how could I test something like: public class someController { private SomeService someService; @GET @Path("...") public String someMethod(){ return…