[Resolvido] Acentuação no banco de dados

Olá gente,

Eu fiz o exercício 5.9 da apostila da caelum, mas percebi uma coisa, a acentuação não fica legal quando adiciono por este projeto, engraçado que pelo projeto anterior, o jdbc, neste funciona perfeitamente, eu consigo incluir um endereço com acento.

Porque isso ocorre ?
É o tomcat apache?
Meu banco é o mysql, a configuração dele é essa: Storage Engine = MyISAM, collation = utf8_general_ci

meu web.xml

<?xml version="1.0" encoding="UTF-8"?>
<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">
  <display-name>fj21-agenda</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <servlet-name>AdicionaContato</servlet-name>
    <servlet-class>br.com.etrsolution.agenda.servlet.AdicionaContatoServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>AdicionaContato</servlet-name>
    <url-pattern>/adicionaContato</url-pattern>
  </servlet-mapping>
</web-app>

meu adiciona-contato.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<title>Insert title here</title>
	</head>
	<body>
		<form action="adicionaContato">
			Nome: <input type="text" name="nome" /><br />
			E-mail: <input type="text" name="email" /><br />
			Endereço: <input type="text" name="endereco" /><br />
			Data Nascimento: <input type="text" name="dataNascimento" /><br />
			
			<input type="submit" value="Gravar" />
		</form>
	</body>
</html>

Podem me ajudar?
Obrigado!!!

Oi,

eu acho que esse tópico pode te ajudar:

http://www.guj.com.br/java/12456-qual-character-encoding-usar-em-sites-so-para-brasileiros

O Luca colocou vários aspectos sobre os problemas de acentuação, e acrescento que em uma aplicação eu tive que colocar esse código logo após a conexão:

SET NAMES 'utf8' SET character_set_connection=utf8 SET character_set_client=utf8 SET character_set_results=utf8

fw

Olá Dieval,

Obrigado, me ajudou muito, resolvi o problema da segunda forma

  1. Os forms devem ser assim:
    <form action=". . ." accept-charset=“iso-8859-1,utf-8”>

Muito obrigado