head.jsp 810 B

123456789101112131415161718192021222324
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: x'b'w
  4. Date: 2021/6/20
  5. Time: 22:11
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <%
  10. String basePath = request.getScheme()
  11. + "://"
  12. + request.getServerName()
  13. + ":"
  14. + request.getServerPort()
  15. + request.getContextPath()
  16. + "/"
  17. ;
  18. %>
  19. <%--<%=basePath%>--%>
  20. <base href="http://localhost:8089/TestServlet09_war_exploded/">
  21. <%--<base href="basePath">--%>
  22. <%--<link type="text/css" rel="stylesheet" href="static/css/style.css" >--%>
  23. <link type="text/css" rel="stylesheet" href="static/css/style.css">
  24. <script type="text/javascript" src="static/script/jquery-1.7.2.js"></script>