认识到了src后台部分的知识,entity 表示实体类
database表示数据库连接类
dao 表示数据访问
数据库连接类database
public class Database {
public static Connection conn(){
//定义地址,"jdbc:mysql://ip地址:端口号/数据库名"
String url = "jdbc:mysql://localhost:3306/javawebdemo1";
Connection connection = null;
try {
//加载驱动
Class.forName("com.mysql.jdbc.Driver");
//建立连接,用户名:root,密码:hello
connection = DriverManager.getConnection(url, "root", "hello");
}catch (SQLException e){
e.printStackTrace();
}catch (ClassNotFoundException e){
e.printStackTrace();
}
return connection;
}
}