Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用 Hessian 进行富客户端和服务器之间的通信。
由于移动和重命名,remoting-servlet.xml 中的条目与实际类名不匹配时常发生。
因此,我正在寻找一种简单的方法来测试远程处理 xml。
有没有简单的方法可以做到这一点?最好不要手动解析 xml 并尝试实例化其中提到的所有类。
我们现在在测试中创建一个 Spring BeanFactory:
private final BeanFactory factory = new XmlBeanFactory(new FileSystemResource("remoting-servlet.xml"));
并尝试创建每个配置的 bean:
assertNotNull(factory.getBean("beanName"));
很好用