0
I’m having a problem in a JSP that should insert a project to my work returning me as an error, this virtually identical an exercise I did earlier, so I don’t understand the reason for the error.
Error:
org.apache.jasper.JasperException: An exception occurred processing
[/jsp/projeto/validaInserirProjeto.jsp] at line [14]
11:
12: Funcionario funcionario = (Funcionario) session.getAttribute("UsuarioLogado");
13:
14: Projeto projeto = new Projeto(0, nome, descricao, dataObtido, dataEntregue, funcionario.getIdFuncionario());
15: ProjetoController projCont = new ProjetoController();
16: projeto = projCont.inserirProjeto(projeto);
17:
java.lang.NullPointerException
org.apache.jsp.jsp.projeto.validaInserirProjeto_jsp._jspService(validaInserirProjeto_jsp.java:128)
<%
String nome = request.getParameter("NOME");
String descricao = request.getParameter("DESCRICAO");
String dataObtido = request.getParameter("DATAOBTENCAO");
String dataEntregue = request.getParameter("DATAENTREGUE");
Funcionario funcionario = (Funcionario) session.getAttribute("UsuarioLogado");
Projeto projeto = new Projeto(0, nome, descricao, dataObtido, dataEntregue, funcionario.getIdFuncionario());
ProjetoController projCont = new ProjetoController();
projeto = projCont.inserirProjeto(projeto);
%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Projeto cadastrado</title>
</head>
<body>
<h1>Projeto cadastrado com sucesso em seu inventario, <%=funcionario.getNome()%></h1><br><br>
<h1>Id Projeto = <%=projeto.getIdProjeto()%></h1>
<h1>Nome = <%=projeto.getNome()%></h1>
<h1>Descrição = <%=projeto.getDescricao()%></h1>
<h1>Data Obtenção = <%=projeto.getDataObtido()%></h1>
<h1>Data Entregue = <%=projeto.getDataEntregue()%></h1>
</body>
</html>
Put the whole mistake, so there’s no way to know where the mistake is.
– Alessandro Macanha
org.apache.Jasper.Jasperexception: An Exception occurred Processing [/jsp/project/validationInserirProjeto.jsp] at line [14] 11: 12: Funcionaio funcionario = (Funcionario) Session.getattribute("Usuariodo"); 13: 14: Projeto = new Projeto(0, nome, descricao, dataObtido, dataEntregue, funcionario.getIdFuncionario());
15: ProjetoController projCont = new ProjetoController();
16: projeto = projCont.inserirProjeto(projeto);
17:
– CorruptionMan
java.lang.Nullpointerexception org.apache.jsp.jsp.project.validatorProjeto_jsp. _jspService(validationInserirProjeto_jsp.java:128)
– CorruptionMan
You can [Dit] the question and add the error information, so the information gets concentrated in one place
– Denis Rudnei de Souza
Yes, actually from the beginning I had put it complete, but they edited my doubt for some reason removing all the more important part that was the mistake itself. I updated again, thanks for the advice.
– CorruptionMan
In valida insert project goes only up to line 36. I’m not getting what’s going wrong.
– CorruptionMan
Can you put the most levels of stacktrace?
– Jefferson Quesado
funcionario
is void.– Victor Stafusa