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 では、(マーシャラー オブジェクトを使用して) 可能です。ジャージーを使用してそれを行う方法がわかりません。どういうわけか次のようなものを注入できる方法があるかどうか疑問に思っていました:
<?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() { .... }