精通Hibernate:Java对象持久化技术详解

来源:互联网 发布:高铁抢票软件哪个好 编辑:程序博客网 时间:2024/05/01 05:30

 第二章

Hibernate是应用和关系数据库的桥梁,负责对象和关系数据之间的映射。

Halloapp:

hibernate.properties:

hibernate.dialect=org.hibernate.dialect.MySQLDialect  //生成native对象标识符生成策略
hibernate.connection.driver_class=com.mysql.jdbc.Driver //org.gjt.mm.mysql.Driver
hibernate.connection.url=jdbc.mysql://localhost:3306/Sample
hibernate.connection.username=root
hibernate.connection.password=1234
hibernate.show_sql=true

 

原创粉丝点击