Hi Team,
    @GET
    @Path("hello1/{pnr}")
    @Produces(MediaType.TEXT_PLAIN)
    public String sayHello(                            @Size(min=6, max=6, 
message="Check the Size") 
                            @Pattern(regexp="[A-Za-z0-9\\-]+$", message="Not a 
valid PNR") 
                            @PathParam("pnr") String pnr) {
        return "PNR";
    }if I give the input as /hello1/$$$$$$
Returns http status 400 bad request and prints an error 
HelloWorldResource.sayHello.arg0: "Not a valid PNR" in the tomee log
Is it possible to return the message "Not a valid PNR"  in the response body 
along with http status code of 400.
 I believe  I am requesting a new feature to be added to tomee.
Thanks,Ravisankar Challa

Reply via email to