• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Hibernate_HelloWorld(Annotation版)

mysql 搞代码 4年前 (2022-01-09) 14次浏览 已收录 0个评论

二、Hibernate下Hello World Annotaion版 本文来源gaodai#ma#com搞*代#码9网#1.创建teacher表 create table teacher(id int primary key , name varchar(20) , title varchar(20)); 2.创建Teacher类,创建对应的Annotation package com.zgy.hibernate.model;import javax.persistence.Entity;i

二、Hibernate下Hello World Annotaion版

1.创建teacher表

create table teacher(id int primary key , name varchar(20) , title varchar(20));

2.创建Teacher类,创建对应的Annotation

package com.zgy.hibernate.model;import javax.persistence.Entity;import javax.persistence.Id;@Entitypublic class Teacher {private int id;private String name;private String title;@Idpublic int getId() {return id;}public void setId(int id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getTitle() {return title;}public void setTitle(String title) {this.title = title;}}

3.加入相应的hibernate jar 包

4.在hibernate.cfg.xml中添加配置

<?xml version='1.0' encoding='utf-8'?><!---ecms  Database connection settings -->com.mysql.jdbc.Driverjdbc:mysql://localhost:3306/hibernaterootroot<!---ecms  JDBC connection pool (use the built-in) --><!---ecms  1 --><!---ecms  SQL dialect -->org.hibernate.dialect.MySQLDialect<!---ecms  Enable Hibernate's automatic session context management --><!---ecms  thread --><!---ecms  Disable the second-level cache -->org.hibernate.cache.internal.NoCacheProvider<!---ecms  Echo all executed SQL to stdout -->t【本文来自鸿网互联 (http://www.68idc.cn)】rue<!---ecms  Drop and re-create the database schema on startup --><!---ecms  update -->

5.测试,查看数据库变化。

PS:

输入@后自动出现随笔提示的方法:

Window——Preferences——Content Assit——.@


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Hibernate_HelloWorld(Annotation版)

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址