我有一个使用休眠的数据库设置,我想在我的 JSP 页面中调用对表的搜索。如何使用 jsp 页面调用我的 java 函数并存储结果,然后在 jsp 页面上打印它们?
搜索功能(按主题搜索)
public Iterable<Layouts> getSelectedLayouts(String subjectName){}
我的jsp页面中有包含这个方法的类作为spring bean
custom:useSpringBean var="layoutManager" bean="LayoutManager"
其中 LayoutManager 是类
不知道怎么调用jsp页面中的方法并输出结果
我正在使用 spring/hibernate 连接到数据库,并在本地 tomcat 服务器上运行我的 jsp