我需要注释这样的现有类:
package com.example;
import javax.jws.WebMethod;
import javax.jws.WebService;
public class AnnotateMe {
public String method1() { return ""; }
public int method2() { return 0; }
public void method3() { }
}
在编译时添加@WebService
和@WebMethod
以实现此输出:
package com.example;
import javax.jws.WebMethod;
import javax.jws.WebService;
@WebService
public class AnnotateMe {
@WebMethod
public String method1() { return ""; }
@WebMethod
public int method2() { return 0; }
@WebMethod
public void method3() { }
}
我需要无差别地注释每个类方法。
是否可以使用Ant或Maven任务?