mardi 7 juillet 2015

Failed to load resource: the server responded with a status of 404 (Not Found) in spring mvc

I am trying to load the css file into jsp, it is not loading and showing the message Failed to load resource: the server responded with a status of 404 (Not Found).the following is my code

<%@ taglib uri="http://ift.tt/QfKAz6" prefix="c" %>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Bootstrap Form With Spring Mvc Example</title>
<link href="<c:url value='/resources/css/bootstrap.css'/>" rel="stylesheet" media="screen">
</head>

in configuration class I have added the below code:

 public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/resources/**")
        .addResourceLocations("/resources/");
    }

I have tried all the solutions, I did not find what's the wrong,can any one help me?

Aucun commentaire:

Enregistrer un commentaire