第一、关于hibernate的HQL语言的记录 实现登录功能,需要查询数据库,所以要实现数据库查询功能 Hibernate是连接数据库的一个框架,将实体类与数据库表里的数据联系起来 其实HQL查询语句和SQL查询语句一致,都是用select 建立一个实体类,有私有变量username和password 数据库中的表格是Userss(username,password),主键是username 其查询语句是: String hql = “from Users userss where userss.username=’”+name+"’"; Users user = (Users) session.createQuery(hql).uniqueResult();
https://www.cnblogs.com/franson-2016/p/6230634.html https://blog.csdn.net/maty_wang/article/details/80534854
第二、Hibernate连接数据库的步骤
1.创建 Configuration 对象:对应 hibernate 的基本配置信息和 对象关系映射信息 Configuration configuration = new Configuration().configure(); 2.调用Configuration的buildSessionFactory()方法返回一个SessionFactory对象 //sessionFactory = configuration.buildSessionFactory(); SessionFactory sessionFactory = configuration.buildSessionFactory(); 3.从SessionFactory 中获取 Session 对象 session = sessionFactory.openSession(); 4.开启事务 transaction = session.beginTransaction(); 5.执行对数据库的操作,如查询,删除 6.提交事物 transaction.commit(); 7.关闭session和 SessionFactory session.close(); sessionFactory.close();第三、Hibernate配置 hibernate.cfg.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property name="connection.url">jdbc:mysql://localhost:3306/mysql?useSSL=false</property> <property name="connection.username">root</property> <property name="connection.password">123456</property> <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property> <property name="connection.pool_size">5</property> <property name="show_sql">true</property> <property name="format_sql">true</property> <mapping resource="com/strutsExample/entity/Users.hbm.xml"/> </session-factory> </hibernate-configuration>自己的学习hibernate时记录笔记,若有不对,请指正。