Quando eu inicio o java application entro no navegador e digito localhost:8080/, aparece a mensagem de erro:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback. Thu Jul 27 17:02:23 AMT 2017 There was an unexpected error (type=Internal Server Error, status=500). Exception parsing document: template="index", line 10 - column 3
A mensagem de erro mostra que tem um erro no codigo html da index:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ListaVIP</title>
<link href="../static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="jumbotron" align="center" style="margin-top: 50px;">
<h1>Seja bem vindo ao ListaVIPs</h1>
<div align="center">
<a href="listavip" class="btn btn-lg btn-primary">Clique aqui para ver a lista de convidados</a>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>
O a linha que a mensagem de erro esta falando é onde terminal "</head>
"
Como eu pode resolver este problema?