hibernate学习笔记03-- hibernate + mysql + Annotation
1. Annotation 的使用主要分为 2 步: 1.1 加入相应的 jar 包: hibernate-annotations.jar // Annotation 核心包 ejb3-persistence.jar // 符合 jpa 标准的 Annotation 的实现 hibernate-commons-annotations.jar // 进行发射的时候使用 1.2 在 model 中使用 @ 注解的形式对类和属性进行注解 2. 新建 hibernate_annotation , 工程结构目录如下图: 3. 加入相应的 jar 包: 2.1 加入 hibernate 相应的 jar 包 。 2.2 加入 mysql 驱动的 jar 包 。 2.3 加入支持 annotations 的 jar 包 。 2.4 如下图: 4. 代码: 4.1 Student.java package com.hibernate.model; import javax.persistence.Entity; import javax.persistence.Id; @Entity public class Student { private int id; private String name; private int age; public Student(int id, String