Home > Database > Mysql Tutorial > hibernate映射数据库时@ManyToOne和@OneToMany_MySQL

hibernate映射数据库时@ManyToOne和@OneToMany_MySQL

WBOY
Release: 2016-06-01 13:28:17
Original
1274 people have browsed it

Hibernate

bitsCN.com

第一次用hibernate自动生成表,涉及到多个表的外键,用到了@OneToMany和@ManyToOne注解碰到了几个错误。

首先声明一个基础,@OneToMany和@ManyToOne两个注解没有必要一一对应

第一个问题:@OneToMany和@ManyToOne的区别

使用@ManyToOne时是在本类对应的数据库表中生成字段,比如项目经理类和程序员类,一个项目经理下管理多个程序员,

也就是在这个Programmer对应的表t_programmer中生成字段“mid”;

而@OneToMany注解则是在多的一方对应的表生成字段;

那么会在t_programmer表中生成字段“mid”;多个programmer对应一个项目经理。

值得一提的是当使用@OneToMany时需要使用Setj集合,否则报错

这些都是基础的东西,总结一下以后忘了随时看看

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template