Jsp到我的sql连接错误。

时间:2014-05-15 17:16:39

标签: java mysql sql jsp jdbc

此错误请帮助:

HTTP Status 500 -

type Exception report

message

description The server encountered an internal error () that prevented it from fulfilling this request.

例外

org.apache.jasper.JasperException: Unable to compile class for JSP: 

An error occurred at line: 14 in the jsp file: /select.jsp
localhost cannot be resolved

14:     connection = DriverManager.getConnection(localhost, "root", "apurva");
;

1 个答案:

答案 0 :(得分:1)

您需要传递数据库连接网址,而不仅仅是localhost,例如jdbc:mysql://localhost:3306/

here's a good example