Anyway, I'm getting a nullpointerException
so I have no clue how to deal with it, I read the net on and apparently the problem is in uninitialized variables and stuff like that, but I'm sure everything has been initialized here.
Servlet:
publicControllerLivros(){super();//TODOAuto-generatedconstructorstub}protectedvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{//TODOAuto-generatedmethodstub//doGet(request,response);request.setCharacterEncoding("UTF-8");
String nomeAutor = request.getParameter("nomeAutor");
String nomeLivro = request.getParameter("nomeLivro");
String nomeGenero = request.getParameter("nomeGenero");
if(nomeAutor == null || nomeAutor.trim().equals("") || nomeAutor.trim().equals("null")) {
request.setAttribute("autorNull", "O autor não pode ser em branco:");
request.getRequestDispatcher("Livros.jsp").forward(request, response);
}
if(nomeLivro == null || nomeLivro.trim().equals("") || nomeLivro.trim().equals("null")) {
request.setAttribute("livroNull", "O nome do livro não pode ser em branco:");
request.getRequestDispatcher("Livros.jsp").forward(request, response);
}
if(nomeGenero == null) {
request.setAttribute("generoNull", "O genero não foi escolhido:");
request.getRequestDispatcher("Livros.jsp").forward(request, response);
}
Livros livro = new Livros(1, nomeLivro, nomeGenero, nomeAutor);
insertLivros.insertLivro(livro);
PrintWriter teste = response.getWriter();
request.setAttribute("nomeAutor", nomeAutor);
request.setAttribute("nomeLivro", nomeLivro);
}
class insert:
public class insertLivros {
public static void insertLivro(Livros livro) {
Connection connection = null;
PreparedStatement pstmt = null;
try {
String query = null;
query = "insert into livros(nomelivro, nomegenero, nomeautor) VALUES(?, ?, ?)";
//Statement statement = null;
connection = Conexao.getConexao();
pstmt = connection.prepareStatement(query);
pstmt.setString(1, livro.getNomeLivro());
pstmt.setString(2, livro.getNomeGenero());
pstmt.setString(3, livro.getNomeAutor());
pstmt.executeUpdate();
connection.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
connection class (I can not believe the error is here)
public class Conexao {
public static java.sql.Connection getConexao(){
Connection connection = null;
String driver = "com.mysql.jdbc.Driver";
try {
Class.forName(driver);
} catch (ClassNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
String user = "root";
String senha = "guimazx33";
String url = "jdbc:mysql://localhost/aula";
try {
connection = DriverManager.getConnection(url, user, senha);
return connection;
}catch (SQLException e) {
System.out.println("nao conectou");
}
return connection;
}
}