hibernate初使用
2020-03-10 16:02:33来源:博客园 阅读 ()
hibernate初使用
src下新建com.hibernate:
package com.hibernate;
public class Tb_emp1 {
private Integer id;
private String name;
private Integer deptId;
private float salary;
public Tb_emp1(){}
public Integer getId(){
return id;
}
public void setId(Integer id){
this.id=id;
}
public String getName(){
return name;
}
public void setName(String name){
this.name=name;
}
public Integer getDeptId(){
return deptId;
}
public void setDeptId(Integer deptId){
this.deptId=deptId;
}
public float getSalary(){
return salary;
}
public void setSalary(float salary){
this.salary = salary;
}
}
然后:
Tb_emp.hbm.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<!-- name代表的是类名,table代表的是表名 -->
<class name="com.hibernate.Tb_emp1" table="tb_emp1">
<!-- name代表的是User类中的id属性,column代表的是user表中的主键id -->
<id name="id" column="id">
<!-- 主键生成策略 -->
<generator class="native" />
</id>
<!-- 其他属性使用property标签映射 -->
<property name="name" column="name" type="java.lang.String" />
<property name="deptId" type="integer" column="deptId" /> //column:对应数据库中的字段
<property name="salary" type="float" column="salary" /> //name对应bean中的属性
</class>
</hibernate-mapping>
在src新建:
hibernate.cfg.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- 指定方言 -->
<property name="dialect">
org.hibernate.dialect.MySQL5Dialect
</property>
<!-- 链接数据库url -->
<property name="connection.url">
<![CDATA[jdbc:mysql://localhost:3306/db?serverTimezone=GMT%2B8&useSSL=false&useUnicode=true&characterEncoding=utf-8]]> //mysql连接url
</property>
<!-- 连接数据库的用户名 -->
<property name="connection.username">
root
</property>
<!-- 数据库的密码 -->
<property name="connection.password">
admin
</property>
<!-- 数据库驱动 -->
<property name="connection.driver_class">
com.mysql.cj.jdbc.Driver
</property>
<!-- 显示sql语句 -->
<property name="show_sql">
true
</property>
<!-- 格式化sql语句 -->
<property name="format_sql">true</property>
<!-- 映射文件配置 -->
<mapping resource="com/hibernate/Tb_emp1.hbm.xml" /> //Tb_emp1.hbm.xml
</session-factory>
</hibernate-configuration>
转到TestAction :
调用select方法:
public String select()throws Exception{
Configuration config= new Configuration().configure();
SessionFactory sessionFactory = config.buildSessionFactory();
Session session= sessionFactory.openSession();
Transaction transaction= session.beginTransaction();
String hql = "select * from Tb_emp1";
Query query = session.createSQLQuery(hql).addEntity(Tb_emp1.class);
// t1=query.list();
List resultList= query.list();
Iterator iterator = resultList.iterator();
while(iterator.hasNext()){
t1.add((Tb_emp1)iterator.next());
/*Object [] result= (Object[])iterator.next();
System.out.println("and "+result[1]+"and"+result[0]+"and"+result[2]);*/
}
/*Tb_emp1 tb_emp1 = (Tb_emp1) session.get(Tb_emp1.class, 1);
System.out.println(tb_emp1.getId()+""+tb_emp1.getName()+""+tb_emp1.getDeptId()+""+tb_emp1.getSalary());*/
transaction.commit();
session.close();
sessionFactory.close();
return "select";
}
struts.xml:
<action name="selectselct" class="com.test.TestAction" method="select">
<result name="select">/front/selectresult.jsp</result>
<result >
</action>
原文链接:https://www.cnblogs.com/broadencoder/p/12457442.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Java框架之Hibernate实战篇 2020-06-09
- 聊聊 OAuth 2.0 的 token expire_in 使用 2020-06-08
- 为什么阿里巴巴Java开发手册中强制要求接口返回值不允许使用 2020-06-06
- 学习笔记之方法引用 2020-06-06
- idea使用小技巧(一) 2020-06-05
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash