2017-04-17 57 views
1

我正在使用Eclipse並使用Spring MVC。我的項目結構是這樣的:enter image description here爲什麼我的瀏覽器不能訪問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> 

但我的瀏覽器無法訪問在cssjs文件夾中的文件。當我輸入 http://localhost:8080/Mytuition/greet/hi 我在控制檯上得到錯誤,沒有CSS或Javascript應用到它。

回答

相關問題