我正在使用Eclipse并使用Spring MVC。我的项目结构如下:
在css
文件夹中,我有所有CSS文件。在js
文件夹中,我有所有Javascript文件。
这是我的控制器类:
package hellocontroller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;
@Controller
@RequestMapping("/greet")
public class HelloController
{
@RequestMapping("/hi")
protected ModelAndView Hi()
{
ModelAndView modelAndView = new ModelAndView("HomePage");
modelAndView.addObject("welcomeMessage","Hi user. hi");
return modelAndView;
}
}
我的HomePage.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">
<title>Mytuition home</title>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/ButtonsClass.css">
</head>
<body>
-- here i have used the css class
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="${pageContext.request.contextPath}/js/bootstrap.min.js"></script>
</body>
</html>
但我的浏览器无法访问css
或js
文件夹中的文件。当我输入
http://localhost:8080/Mytuition/greet/hi
我在控制台上遇到错误,没有CSS或Javascript被应用到它。
答案 0 :(得分:0)
我在这里找到答案:https://www.mkyong.com/spring-mvc/spring-mvc-how-to-include-js-or-css-files-in-a-jsp-page/
我不得不更改JSP文件和dispatcher-servlet。