现在我创建了一个小说表,我想获取表中对应图书名(bookName)的所有图书章节(title),但是我不知道怎么用Servlet来接收搜索到的数据,应该用集合吗?我希望把接收到的数据通过EL表达式${u.title}带到页面上,但是我不知道应该怎么操作才能让带出来的数据按顺序排序,请教各位大佬怎么实现这些功能
create table novel(
id varchar(32) auto_increment not null,
bookNeme varchar(20) not null,
author varchar(12) not null,
content text not null,
title varchar(255) not null,
bookId int(11)not null,
primary key(id)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;