这是关于在 spring mvc 应用程序的 jsp 页面中访问资源的问题的后续问题 感谢@kmb385,我能够解决该问题,但现在我的 JSP 文件 javax.servlet.jsp.JspException 中出现以下 Eclipse 错误不能解析为一个类型和
javax.servlet.jsp.PageContext 无法解析为类型
正如 kmb385 所建议的,这是我的控制器:
@Controller
public class AdminController {
@RequestMapping("/")
protected ModelAndView handleRequestInternal(HttpServletRequest request,
HttpServletResponse response) throws Exception {
ModelAndView model = new ModelAndView("index");
model.addObject("msg", "hello world");
return model;
}
}
这是我的 index.jsp 页面以防万一:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<!-- <link type="text/css" rel="stylesheet" href="css/style.css"/> -->
<style type="text/css">
<%@include file="css/style.css" %>
</style>
<title>My Project - MainPage</title>
</head>
<body>
<h2 class="main_heading2">My Project - MainPage</h2>
<div style="float: right; width: 30%; text-align: center">
<p style="float:left;">an image should be here</p>
<img src="images/logo.jpg" alt="Logo"/>
<img src="${pageContext.servletContext.contextPath}/resources/images/logo.jpg" />
</div>
</body>
通过在 JSP 验证器中禁用它,我遇到了“解决方案”,但除非您能给出合理的理由,否则请不要建议这样做。我宁愿正确纠正这个问题
任何帮助表示赞赏
更新: 根据@kmb385 的要求构建路径屏幕抓取