1
私はEclipseに取り組み、Spring MVCを使用しています。プロジェクトの構成は次のとおりです。私のブラウザがCSSまたはJavascriptファイルにアクセスできないのはなぜですか?
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が適用されません。