3
文檔我使用了這些Spring註解一些代碼:如何自動生成的類註釋春天JMX註釋
org.springframework.jmx.export.annotation.ManagedAttribute;
org.springframework.jmx.export.annotation.ManagedOperation;
org.springframework.jmx.export.annotation.ManagedOperationParameter;
org.springframework.jmx.export.annotation.ManagedOperationParameters;
org.springframework.jmx.export.annotation.ManagedResource;
我要生成使用註解註釋的一些文件(甚至只是的javadoc)例如考慮以下方法?
@ManagedOperation(description="Does foo to bar")
@ManagedOperationParameters({
@ManagedOperationParameter(name = "bar", description = "The bar you want to foo.")})
public long fooBar(Bar bar) throws Exception {
...
}
有一些方法可以讓我自動生成此文件,否則我將不得不重複,除了它在所有的javadoc註釋字符串?
我想你錯過了 'Java' 作爲標籤 – abalogh 2011-05-31 18:42:36
:)是微不足道的是轉換成Java。我剪切和粘貼現有的代碼。 – sourcedelica 2011-05-31 22:21:56
好吧好吧:)轉換爲java。 – sourcedelica 2011-05-31 22:49:08