【发布时间】:2020-03-17 05:20:36
【问题描述】:
在spring boot中显示一个jsp页面时,它会与jsp头文件一起显示......
JSP 页面
<html>
<%@ include page language="java" contentType="text/jsp; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ include taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
Hello World
</body>
</html>
浏览器输出
<%@ include page language="java" contentType="text/jsp; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%><%@ include taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>Hello World
请帮忙.....
【问题讨论】:
标签: java spring spring-boot jsp