Pessoal Bom dia !
Estou fazendo uma tela de Login usando VRaptor + Spring Security, ta funcionando perfeitamente, mas porém não mostra a imagem contida no jsp O Spring security não permite imagens ? segue meu código :<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:if test="${param.error eq 'invalido'}">
<c:out value="Usuário e/ou senha inválido(s)"/>
</c:if>
<form name="f" action="<c:url value="/j_spring_security_check"/>" method="POST">
<fieldset>
<td>
<p>
<img />
</p>
</td>
<legend>Bem Vindo ao S.I.G.I - V.1.0 MARÇO 2011</legend>
<br />
<legend>Usuário : sigi senha:sigi</legend>
<br />
<table>
<tr>
<td>
<c:out value="Usuário:"/>
</td>
<td>
<input type='text' name='j_username'/>
</td>
</tr>
<tr>
<td>
<c:out value="Senha:"/>
</td>
<td>
<input type='password' name='j_password'>
</td>
</tr>
<tr>
<td colspan='2'>
<input name="submit" type="submit">
</td>
</tr>
<tr>
<td colspan='2'>
<input name="reset" type="reset">
</td>
</tr>
</table>
</fieldset>
</form>

