Como resolver? No navegador aparem as labels ebook, impresso e combo duplicadas. Assim:
Título Descrição Páginas E-book Impresso Combo EBOOK IMPRESSO COMBO Cadastrar
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Livro de Java, Android, iPhone, Ruby, PHP e muito mais - Casa do Código</title>
</head>
<body>
<form action="/casadocodigo/produtos" method="POST">
<div>
<label>Título</label>
<input type="text" name="titulo">
</div>
<div>
<label>Descrição</label>
<textarea rows="10" cols="20" name="descricao"></textarea>
</div>
<div>
<label>Páginas</label>
<input type="text" name="paginas">
</div>
<div>
<label>E-book</label>
<input type="text" name="ebook">
</div>
<div>
<label>Impresso</label>
<input type="text" name="impresso">
</div>
<div>
<label>Combo</label>
<input type="text" name="combo">
</div>
<c:forEach items="${tipos}" var="tipoPreco" varStatus="status">
<div>
<label>${tipoPreco}</label>
<input type="text" name="precos[${status.index}].valor" />
<input type="hidden" name="precos[${status.index}].tipo" value="${tipoPreco}" />
</div>
</c:forEach>
<button type="submit">Cadastrar</button>
</form>
</body>
</html>