Изучаю работу hibernate. Если вывожу список авторов, то все собирается и выводится (только адреса памяти)
for (Author author:new AuthorHelper().getAuthorList()) {
System.out.println(<b>author</b>);
}
если я хочу получить имя или фамилию
for (Author author:new AuthorHelper().getAuthorList()
) {
System.out.println(<b>author.getSecondName()</b>);
}
то появляется ошибка
error: cannot find symbol System.out.println(author.getSecondName());
^
symbol: method getSecondName()
location: variable author of type Author
Что нужно сделать?