Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. @GET
  2. public FooView bar(@QueryParam("city") String name) {
  3. if (name != null) {
  4. return Response.ok.build();
  5. } else {
  6. throw new RuntimeException("city name cannot be null");
  7. }
  8. }
  9.  
  10. http://localhost:blahblah/city=null
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement