I know you say it was not found, but I can not find where I was wrong.
My controller:
@Controller
public class ProdutoController {
@Inject
private Result result;
@Path("/")
public ArrayList<Produto> inicio(){
ArrayList<Produto> listaProduto = null;
try {
listaProduto = new ProdutoDao().listaProduto();
} catch (Exception e) {
System.out.println("error: "+e.getMessage());
}
return listaProduto;
}
@Path("/teste")
public void teste(){
result.include("mens", "alguma coisa");
}
}
My jquery:
function clicar(){
$.ajax({
url: '<c:url value="/teste" />',
dataType: 'string',
success: function(retorno){
alert(retorno);
}
});
}
Can anyone tell me what I did wrong?