Problema de decode no Struts 2

Senhores,

Estou com problemas no Struts 2 de DECODE, utilizando o “autocompleter” do "<%@ taglib uri="/struts-jquery-tags" prefix=“sj”%>"
e buscando pelo nome
Busca:
JOSÉ

Saída:
JOSé

Pesquisando com input o nome JOSÉ ele não mostra nenhum resultado já pesquisando direto no BD via SQL um simples
LIKE ‘JOSÉ%’ eles mostra normalmente todos os nomes que começam com JOSÉ…

Alguém já passou por este problema?

Configuração Página JSP:

&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot; ?&gt;
&lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%&gt;

Configuração Web.xml:

&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	id="WebApp_ID" version="2.5"&gt;

Configuração Struts2:

&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&gt;
&lt;!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd"&gt;

&lt;struts&gt;
	&lt;constant name="struts.custom.i18n.resources" value="messages" /&gt;
    &lt;constant name="struts.action.extension" value="java" /&gt;
    &lt;constant name="struts.devMode" value="false" /&gt;
    &lt;constant name="struts.enable.DynamicMethodInvocation" value="true" /&gt;
    &lt;constant name="struts.i18n.encoding" value="UTF-8" /&gt;
    &lt;constant name="struts.locale" value="pt_BR" /&gt;
    &lt;constant name="struts.multipart.maxSize" value="2621440" /&gt;

	&lt;package name="struts2" namespace="/" extends="struts-default, json-default"&gt;

Abraços!!!