show.jspx 870 B

123456789101112131415161718192021222324
  1. <jsp:root
  2. xmlns:jsp="http://java.sun.com/JSP/Page"
  3. xmlns:spring="http://www.springframework.org/tags"
  4. xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
  5. xmlns:c="http://java.sun.com/jsp/jstl/core" xmlns:form="http://www.springframework.org/tags/form"
  6. version="2.0">
  7. <jsp:directive.page language="java" contentType="text/html"/>
  8. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  9. <head>
  10. <title><c:out value="${message.summary}"/></title>
  11. </head>
  12. <body>
  13. <div class="container">
  14. <h1>Message : <c:out value="${message.summary}"/></h1>
  15. <dl>
  16. <dt>Created</dt>
  17. <dd><fmt:formatDate value="${message.created.time}"/></dd>
  18. <dt>Message</dt>
  19. <dd><c:out value="${message.text}"/></dd>
  20. </dl>
  21. </div>
  22. </body>
  23. </html>
  24. </jsp:root>