servlet-jsp交互问题
我有一个实施问题。
我已经创建了一个 jsp 和一个 servlet 文件。 我有一个会话 bean 的远程接口。 我想在servlet中使用remoteInterface,然后在jsp上写入数据。
客户端只能看到结果页面。
例如:
会话 bean 的方法返回一个 Collection。 我在 servlet 中使用这个集合,并在此标记之后 jsp 中的所有元素。
你能帮我提供一个代码示例吗?
谢谢
I have a implementation prolbem.
I have create a jsp and a servlet file.
I have a remoteInterface of session bean.
I want to use remoteInterface in servlet and after write the data on the jsp.
The client must see only the result page.
For Example:
A method of session bean return a Collection.
I use this collection in the servlet and after this stamp all the element in the jsp.
Can you help me with a code example.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按如下方式实现
doGet()
方法(使用Product
作为现实世界实体的示例):按如下方式实现 JSP:
在
web.xml/products
的url-pattern
上的 code>,然后您将能够运行 servlet 并通过 http://example.com/contextname/products。Implement
doGet()
method as follows (usingProduct
as example of real world entity):Implement the JSP as follows:
Map the servlet in
web.xml
on anurl-pattern
of for example/products
, then you'll be able to run the servlet and show the JSP by http://example.com/contextname/products.