是否可以使用jax-ws soap-webservicecan输出json格式而不是xml?
@Component
@WebService
public class HRSService {
@WebMethod
public String test(String value) {
return value; //returned as XML. JSON possible?
}
}
Run Code Online (Sandbox Code Playgroud)