测试 Hessian remoting-servlet.xml

发布于 2024-10-14 03:51:14 字数 182 浏览 0 评论 0原文

我们使用 Hessian 来实现富客户端和服务器之间的通信。

由于移动和重命名,remoting-servlet.xml 中的条目有时会与实际的类名不匹配。

因此,我正在寻找一种简单的方法来测试远程处理 xml。

有没有简单的方法可以做到这一点?最好不要手动解析 xml 并尝试实例化其中提到的所有类。

We are using Hessian for communication between a rich client and a server.

Due to moving and renaming it happens from time to time that the entries in the remoting-servlet.xml don't match the actual class names.

Therefor I'm looking for an easy way to test the remoting xml.

Is there an easy way to do that? Preferable without manually parsing the xml and trying to instantiate all classes mentioned in there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百合的盛世恋 2024-10-21 03:51:14

我们现在在测试中创建一个 Spring BeanFactory:

private final BeanFactory factory =
        new XmlBeanFactory(new FileSystemResource("remoting-servlet.xml"));

并尝试创建每个配置的 bean:

assertNotNull(factory.getBean("beanName"));

效果很好

We now create a Spring BeanFactory in a test:

private final BeanFactory factory =
        new XmlBeanFactory(new FileSystemResource("remoting-servlet.xml"));

And try to create each configured bean:

assertNotNull(factory.getBean("beanName"));

Works nice

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文