Skip to content

Instantly share code, notes, and snippets.

@yostane
Last active January 24, 2021 21:24
Show Gist options
  • Select an option

  • Save yostane/6a9190b679f433536be85c3df2a7afe6 to your computer and use it in GitHub Desktop.

Select an option

Save yostane/6a9190b679f433536be85c3df2a7afe6 to your computer and use it in GitHub Desktop.
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %>
<html>
<head>
<title>Première page JSP</title>
</head>
<body>
<p>
<%
out.print("Votre addresse IP est 🕵️: " + request.getRemoteAddr());
%>
</p>
<p>La date actuelle du serveur est : <%= (new java.util.Date()).toString()%></p>
<a href = "<c:url value = "jstl-demo.jsp"/>">TEST</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment