Másik jsp oldal importálása

A <jsp:include>-nál jobban használható a <c:import>.

teszt.jsp: importálás paraméter átadással.

<?xml version="1.0" encoding="utf-8" ?>
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>A c:import paraméteres használata jstl-ben</title>
</head>
<body>
<c:import url = "JSTLImportingDate.jsp">
<c:param name = "date" value = "<h1>Szóval, láttad a dátumot?</h1>"/>
</c:import>
</body>
</html>

JSTLImportingDate.jsp, ékezetes karaktereket is használunk UTF-8-ban

<?xml version="1.0" encoding="utf-8" ?>
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<fmt:requestEncoding value="UTF-8" />
<html>
  <head>
    <title>This page is imported</title>
  </head>
  <body>
    <strong>${param.date}</strong>
  </body>
</html>