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.
我有从 servlet 过滤器中的 http 请求正文获得的 JSON 对象。我需要通过 XSD 架构对其进行验证。主要的复杂性是,当我将此 JSON 对象转换为 XML 时,缺少 XMLRootElement 并且没有命名空间(但在 XSD 命名空间中存在),因此验证失败。
此外,我无法将此 JSON 解组为 POJO,因为此 Web 过滤器广泛用于大量 Web 服务。
有任何想法吗?