How to annotate a method in dropwizard so that a single method can handle my both post and GET
eg: Like
@POST
@GET
public void login() throws Exception{
// do something
}
How to annotate a method in dropwizard so that a single method can handle my both post and GET
eg: Like
@POST
@GET
public void login() throws Exception{
// do something
}