Installez et chargez le pilote JDBC
Mettez le fichier mysql-connector-java-5.1.7-bin.jar dans le fichier lib du répertoire WEB-INF du projet, et l'installation est terminée (Le le principe est que MySQL a été installé sur votre machine. S'il n'est pas installé, installez-le d'abord)
Chargez le pilote JDBC
<%@page language="java" contentType="text/html;charset=gb2312"%> <!DOCTYPE html> <html> <head> <title>加载JDBC驱动程序</title> </head> <body> <% try{ Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序 }catch(ClassNotFoundException e){ out.println("找不到驱动类");//抛出异常时,提示信息 } %> </body> </html>
Connectez-vous à la base de données MySQL
Démarrez Mysql. et Tomcat,
Utilisez JDBC pour vous connecter à la base de données.
La première façon
<%@page language="java" contentType="text/html;charset=gb2312"%> <%@page import="java.sql.*" %> <!DOCTYPE html> <html> <head> <title>链接MySQL数据库</title> </head> <body> <% try{ Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序 Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/javaweb?user=root&password=zhangda890126;;");//链接数据库 }catch(ClassNotFoundException e){ out.println("找不到驱动类");//抛出异常时,提示信息 }catch(SQLException e){ out.println("链接MySQL数据库失败");//处理SQLException异常 } %> </body> </html>
La deuxième façon
<%@page language="java" contentType="text/html;charset=gb2312"%> <%@page import="java.sql.*" %> <!DOCTYPE html> <html> <head> <title>链接MySQL数据库</title> </head> <body> <% String url = "jdbc:mysql://localhost:3306/javaweb";//连接数据库的url地址 String user = "root";//登录数据库的用户名 String password = "zhangda890126;;";//登录数据库的用户名的密码 try{ Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序 Connection conn = DriverManager.getConnection(url,user,password);//链接数据库 }catch(ClassNotFoundException e){ out.println("找不到驱动类");//抛出异常时,提示信息 }catch(SQLException e){ out.println("链接MySQL数据库失败");//处理SQLException异常 } %> </body> </html>
Pour plus de didacticiels et d'articles connexes sur les programmes JSP utilisant JDBC pour se connecter à MySQL, veuillez prêter attention à le site PHP chinois !