使用 Spring HttpInvoker 的最简单的远程服务器
出于(JUnit)测试目的,我想创建一个简单的应用程序,它将作为使用 Spring HttpInvoker 调用的服务器。我不想制作一个真正的 web 应用程序来部署在任何 servlet 容器中,而只是独立的东西。
您有什么想法如何使其尽可能简单吗? (没有嵌入式 Tomcat 或其他东西的解决方案是首选..)
For (JUnit) testing purposes I'd like to make a simple application that would be the server to be invoked using Spring HttpInvoker. I don't want to make a real webapp to be deployed in any servlet container, only something standalone.
Do you have any ideas how to make it as simply as possible? (Solutions without embedded Tomcat or stuff are preferred..)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这对你来说效果很好 - http://docs.codehaus.org/display/JETTY/ServletTester
你可以在你的@BeforeClass方法中启动服务器,记录服务器启动的baseUrl,并使用这个url来测试你的客户端。
This will work out well for you - http://docs.codehaus.org/display/JETTY/ServletTester
You can start up the server in your @BeforeClass method, record the baseUrl where the server starts up and use this url to test your client.
http://code.google.com/p/jianwikis/wiki/SpringHttpRemotingWithEmbeddedJettyServer
http://code.google.com/p/jianwikis/wiki/SpringHttpRemotingWithEmbeddedJettyServer