Skip to content

Commit fd3e156

Browse files
committed
Adding more descriptive output statement
1 parent c63186f commit fd3e156

File tree

1 file changed

+2
-2
lines changed
  • jaxrs/beanvalidation/src/main/java/org/javaee7/jaxrs/beanvalidation

1 file changed

+2
-2
lines changed

jaxrs/beanvalidation/src/main/java/org/javaee7/jaxrs/beanvalidation/TestServlet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ protected void processRequest(HttpServletRequest request, HttpServletResponse re
7575
out.println("<!DOCTYPE html>");
7676
out.println("<html>");
7777
out.println("<head>");
78-
out.println("<title>Servlet TestServlet</title>");
78+
out.println("<title>BeanValidation with JAX-RS</title>");
7979
out.println("</head>");
8080
out.println("<body>");
81-
out.println("<h1>Servlet TestServlet at " + request.getContextPath() + "</h1>");
81+
out.println("<h1>BeanValidation with JAX-RS</h1>");
8282
Client client = ClientBuilder.newClient();
8383
WebTarget target = client.target("http://"
8484
+ request.getServerName()

0 commit comments

Comments
 (0)