problems with web service Jquery + VRaptor 4 "status of 404"

0

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?

    
asked by anonymous 17.02.2016 / 12:21

0 answers