Tenho os seguintes codigos: 1. Controller:
package br.com.caelum.vraptor.controller;
import java.util.List;
import javax.persistence.EntityManager;
import br.com.caelum.vraptor.Controller;
import br.com.caelum.vraptor.Path;
import br.com.caelum.vraptor.dao.ProdutoDao;
import br.com.caelum.vraptor.model.Produto;
import br.com.caelum.vraptor.util.JPAUtil;
@Controller
public class ProdutoController {
@Path("/produto/sobre")
public void sobre() {
}
@Path("/produto/lista")
List<Produto> lista() {
EntityManager em = JPAUtil.criaEntityManager();
ProdutoDao dao = new ProdutoDao(em);
return dao.lista();
}
}
lista.jsp:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Lista de Produtos</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Valor</th>
<th>Quantidade</th>
</tr>
</thead>
<tbody>
<c:forEach items="${produtoList}" var="produto">
<tr>
<td>${produto.nome}</td>
<td>${produto.valor}</td>
<td>${produto.quantidade}</td>
</tr>
</c:forEach>
</tbody>
</table>
</body>
</html>
Porem, quando acesso a uri: http://localhost:8082/vraptor-produtos/produto/lista , aparece o seguinte erro:
HTTP Status 404 - /vraptor-produtos/produto/lista
type Status report
message /vraptor-produtos/produto/lista
description The requested resource is not available.
Apache Tomcat/8.0.29
Ainda não achei a solução deste problema! Aguardo a quem puder ajudar