没关系,我设法通过“将自定义皮肤应用于 Enunctiate 的文档”(http://docs.codehaus.org/display/ENUNCIATE/Applying+a+Custom+Skin+to+Enunciate%27s+Documentation)解决了这个问题
我修改docs.xml.fmt
了 以及docs.fmt
,enunciate-docs
以便识别 '@Secured' 注释。
不幸的是,对于docs.xml.fmt
,没有像我们对docs.fmt
. 所以,我不得不用这些修改过的文件打包自己。
我提到了如何处理@Deprecated (java.lang.Deprecated) 并遵循类似的方法。
在docs.fmt
文件中,将此块添加到类似功能块的下方isDeprecated
[#function isSecured element]
[#return (getTagValues(element, "secured")?size > 0)/]
[/#function]
现在,
就在这个块下面:
[#if isDeprecated(resource)]
<p class="alert">This resource has been deprecated.</p>
[/#if]
添加另一个 if 块
[#if isSecured(resource)]
<p class="note">This resource is available only to these roles:
[#assign securedTags = getTagValues(resource, "secured") /]
[#if securedTags?size > 0]
${securedTags[0]}
[/#if]
[#list resource.parent.annotations as tag]
${tag}
[/#list]
</p>
[/#if]
现在,在docs.xml.fmt
文件中,就在下面:
[#if resource.parent.annotations["java.lang.Deprecated"]??]
<tag name="deprecated"/>
[/#if]
添加以下块
[#if resource.parent.annotations["org.springframework.security.access.annotation.Secured"]??]
<tag name="secured">
[#list resource.parent.annotations["org.springframework.security.access.annotation.Secured"]["value"] as roles]
<![CDATA[${roles}]]>
[/#list]
</tag>
[/#if]