如何在我的 Eclipse 中实现示例 jms、springs 程序
我也是 jms、springs 和 eclipse 的新手。我正在尝试在 MyEclipse 7.1 中使用 Springs 实现 jms 示例,并且我一直在引用以下网址。
http://java-x.blogspot.com /2006/12/implementing-jms-with-spring-messaging.html
但我无法理解如何执行该程序,它包含一个 servlet 但没有任何 html 或 jsp 页面,我应该创建一个 web它的项目还是java应用程序?我如何运行该程序。
谢谢并致以最诚挚的问候。
I'm new to jms and springs and eclipse as well. i'm trying to implement jms example using Springs in MyEclipse 7.1, and i have been referring the following url.
http://java-x.blogspot.com/2006/12/implementing-jms-with-spring-messaging.html
But Iam unable to understand how to execute the program, it contains a servlet but does not have any html or jsp page, should i create a web project for it or java application? How do i run the program.
Thanks and Best Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该创建一个 Web 项目来保存 servlet。一个 Web 项目将有一个 Java 源目录和一个 Web 内容(图像、html、jsp 等)目录。确保将 servlet 代码放入 java 源目录中。您还需要在 web.xml 中注册 servlet,除非它是带有注释的 Java EE 5 servlet。
要运行您的 servlet,请右键单击它并选择 Run As ->在服务器上运行
You should create a web project to hold the servlet. A web project will have a directory for java source and a directory for web content (images, html, jsp, etc.). Make sure that you put the servlet code inside the java source directory. You will also need to register the servlet in web.xml unless it is a Java EE 5 servlet with annotations.
To run your servlet, right click on it and select Run As -> Run on Server