Estou com um problema em como passar para o um método do controller o id do aluno:
segundo o que entendi esse aluno do href é do objeto aluno:
<ul>
<c:forEach items="${alunoList}" var="aluno">
<li> Aluno </li>
${aluno.nome}
<a href="/aluno?id=${aluno.id}">ver cliente 5</a>
</c:forEach>
</ul>
E o meu controller:
@Path("/aluno")
public void atualiza(int id){
}
Mas ele não entra no método "atualiza" e dá o seguinte erro no tomcat:
INFO: Illegal access: this web application instance has been stopped already. Could not load org.apache.log4j.spi.NOPLoggerRepository. The eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact.
Por favor, me ajudem! :)
