如何从JSP中获取java类的对象
我有一个结果jsp页面,它打印java类的字符串变量。 有人可以给我任何想法吗?
我使用简单的 httpServlet 作为操作类。
Class A
{
String name;
public void setName()
{
this.name = callMethod(); // somehow it assigns the value. Nothing to do with problem
}
}
Result.jsp
这里我需要打印 String 的当前值
I have a result jsp page, which print the string variable of java class.
Can someone give me any idea.
I am using simple httpServlet as action class.
Class A
{
String name;
public void setName()
{
this.name = callMethod(); // somehow it assigns the value. Nothing to do with problem
}
}
Result.jsp
Here i need to print the current value of String
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设 servlet 最后将请求转发到 JSP。
您应该将要在 JSP 中使用的对象存储为请求中的属性。
在操作类/servlet 中:
在 JSP 中(使用 JSTL):
I assume that the servlet, at the end, forwards the request to the JSP.
You should store the objects you want to use in the JSP in the request, as an attribute.
In the action class / servlet :
In the JSP (using the JSTL) :
在顶部的jsp中,您需要放置
在您需要放置的主体中
请不要使用scriplets,我使用过的例子,需要使用JSTL
In jsp at the top u need to place
In the body you need to place
Please dont use scriplets,i used for example ,need to use JSTL