我有一个java类
LayoutManager.java,我使用它作为 Sprean Bean 传递到我的 jsp 页面中
<custom:useSpringBean var="layoutManager" bean="LayoutManager"/>
如何使用 spring bean 从我的 jsp 中的 LayoutManager.java 调用方法?
我觉得我会使用某种形式的 servlet <% %>,但不确定语法
我想调用方法
public Iterable<Layouts> getSpecificLayout(String subjectName)
我现在唯一的弹簧代码是
public class UseSpringBean extends SimpleTagSupport
{
public void doTag() throws JspException, IOExceptionP
PageContext pageContext = (PageContext)getJspContext();
WebApplicationContext springContext = WebApplicationContextUtils.getWebApplicationContext(pageContext.getServletContext());
pageContext.setAttribute(var, springContext.getBean(bean), PageContxt.PAGE_SCOPE);
}