无法从Eclipse中的jsp连接到mySQL DB

问题描述 投票:0回答:1

我想在eclipse中从jsp连接到一个DB,以便构建一个webite。我知道连接可以从.java文件中正常工作。我添加了mysql连接器和一切,但我无法弄清楚为什么它不会连接。这是我的代码:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Login page</title>
</head>
<body>
<%@ page import ="java.sql.*" %>
<%@ page import ="javax.sql.*" %>

<%


    Connection con=null;

    try{
        Class.forName("com.mysql.jdbc.Driver");
        con = DriverManager.getConnection("jdbc:mysql://localhost/e-health?useSSL=false","root","root");
        System.out.println("Connection successful");
        out.println("Connection successful");
    }
    catch(Exception e){
        System.out.println("Connection failed");
    }

    out.println("Loged in, connected to the DB");
%>
<a href = "welcome.html">Welcome</a><br>
<a href= "index.html">Home</a>
</body>
</html>
java html mysql eclipse jsp
1个回答
0
投票

导入程序顶部的包

<%@page import="java.sql.DriverManager"%>
<%@page import="com.mysql.jdbc.Connection"%>
© www.soinside.com 2019 - 2024. All rights reserved.