1. 在使用Hibernate时,有School,Students类,代码如下:()。(选1项) public class School{ private int schooled; private String schoolName; ....//getter、setter方法 } public class Student{ private int studentId; private String studentName; private School school; ....//getter、setter方法 }