Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<c:out value="${sessionScope.controller.getQuestion(${requestScope.questionNumber})}"/>
在哪里
控制器是一个bean
getQuestion 是一个 bean 的方法
questionNumber 是一个属性
当我调用不带参数的 bean 方法时,它可以工作。
<c:out value="${requestScope.questionNumber}"/>
返回需要的值
我认为您的意思是 bean 的声明和分配给 jsp 页面中 bean 声明的 id 的使用。
jsp:useBean id="qanda" class= then qanda.setQuestion("a question ?"); ……这里没时间了