Boa tarde!
Ao inspecionar uma página, que foi criada utilizando JSP e bootstrap, recebo o erro 404 para todos os scripts.
Ao ir no console do navegador, ocorre os seguintes erros:
GET http://localhost:8090/bootstrap.js 404 ()
GET http://localhost:8090/jquery.js 404 ()
Segue abaixo o código da minha JSP.
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<%@ taglib uri="http://www.springframework.org/tags" prefix="s"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Cadastro de motivo de devolução</title>
<c:url value="/resources/css" var="cssPath" />
<c:url value="/resources/js" var="javaScriptPath" />
<script src="${jsPath}/bootstrap.js"></script>
<script src="${jsPath}/jquery.js"></script>
<link rel="stylesheet" href="${cssPath}/bootstrap.css">
</head>
<body>
<div class="container">
<div>
<header>
<div id="principal" class="container">
<h1>Cadastro de motivo de devolução</h1>
</div>
</header>
</div>
<div class="container">
<form action="" method="post">
<div class="form-group">
<label for="id">ID</label> <input id="id" name="id" type="text"
class="form-control" readonly>
</div>
<div class="form-group">
<label for="descricao">Descrição</label> <input id="descricao"
name="descricao" type="text" class="form-control">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Salvar</button>
</div>
</form>
</div>
</div>
</body>
</html>