我正在尝试从eclipse中的jsp连接到数据库,以便构建一个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>
答案 0 :(得分:0)
导入程序顶部的包
<tr *ngFor="let row of rows" *ngIf="row['category']==='M'"><td>...</td><td>...</td></tr>