Imagem não aparece usando Thymeleaf, Spring com Maven

A imagem que eu quero adicionar está no seguinte diretório:

/src/main/resources/static/images/logo.png

E a tag no HTML está assim:

<img width="220px" height="70px" th:src="@{/static/images/logo.png}"/>

Entretanto, recebo a seguinte mensagem quando tento acessar a imagem:

There was an unexpected error (type=Not Found, status=404). No message available
Caso seja necessário saber, meu código do index:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8" />
<title>Empresa | Simulado </title>
<link href="/static/images/favicon.ico" rel="icon" type="image/x-icon" />
</head>

<body>
    <br />
    <h1 align="center">Teste</h1>
    <img width="220px" height="70px" th:src="@{/static/images/logo.png}"/>

Ps: O favicon aparece normalmente