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.
在 JAXB 中,这是可能的(使用 marshaller 对象)。我不知道如何使用泽西岛来做到这一点。我想知道是否有办法以某种方式注入类似的东西:
<?xml-stylesheet type="text/css" href="something.css"?>
在生成的 xml 响应中。
请参阅 XmlHeader 注释。将其附加到您的资源方法。例如像这样:
@GET @Produces("application/xml") @XmlHeader("<?xml-stylesheet type=\"text/css\" href=\"something.css\"?>") public JaxbBean getSomeXml() { .... }