I am trying to connect the mysql database from my JAVA application. But I get this message:
org.apache.jasper.JasperException: An exception occurred processing JSP page /index.jsp at line 31
28: String action="";
29:
30: String url = "jdbc:mysql://localhost:3606/crudjsp;create=true";
31: Class.forName("com.mysql.jdbc.Driver");
32:
33: Connection conn = DriverManager.getConnection(url,"root"," ");
34: Statement stmt = conn.createStatement();