嘿,我已经和学生一起创建了自己的 service.xml。现在我想为学生添加我自己的 searchByName 方法。你能解释一下在 StudentLocalServiceImpl 中写什么吗?
public class StudentLocalServiceImpl extends StudentLocalServiceBaseImpl {
/*
* NOTE FOR DEVELOPERS:
*
*/
public List<Student> getAll() throws SystemException {
return studentPersistence.findAll();
}
public Student getStudentByName(String name) {
return studentPersistence.
}
// 我创建了一个方法 getAll。
我需要另一个人的帮助。
提前致谢。