I have tried these solutions :
<img th:src="@{/resources/images/logo.png}"/>
<img th:src="@{../images/logo.png}"/>
<img th:src="@{classpath:images/logo.png}"/>
In all cases I am getting a
Link base "/resources/images/logo.png" cannot be context relative (/)
How can I fix this?