Pessoal bom dia !
Estou pegando um erro no console, que não sei como resolver e o do que se trata. ex:
AVISO: PWC4011: Unable to set request character encoding to UTF-8 from context /sigi, because request parameters have already been read, or ServletRequest.getReader() has already been called
AVISO: PWC4011: Unable to set request character encoding to UTF-8 from context /sigi, because request parameters have already been read, or ServletRequest.getReader() has already been called
meu web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- configura o controlador do VRaptor -->
<filter>
<filter-name>vraptor</filter-name>
<filter-class>br.com.caelum.vraptor.VRaptor</filter-class>
</filter>
<context-param>
<param-name>br.com.caelum.vraptor.encoding</param-name>
<param-value>UTF-8</param-value>
</context-param>
<filter-mapping>
<filter-name>vraptor</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
</web-app>