W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
有如下表
create table `test_user` (
`id` int(11),
`name` varchar(255),
`age` int,
`create_time` datetime,
primary key (`id`)
);
在明確映射關(guān)系中可以精確的指定表名和列名。將 ?autoMapping
?設(shè)置為關(guān)閉然后為每表和每一個(gè)列配置映射的名字。
// name = "test_user" 表名
// autoMapping = false 關(guān)閉屬性字段自動(dòng)映射(默認(rèn)true),全部通過 @Column 配置
@Table(name = "test_user", autoMapping = false)
public class TestUser {
@Column(name = "id", primary = true)
private Integer id;
@Column("name")
private String name;
@Column("age")
private Integer age;
@Column("create_time")
private Date createTime;
// getters and setters omitted
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: