0
我正在開發JAX-WS Web服務。我的Java類看起來像(帶註釋):動態配置StreamingAttachment屬性
@MTOM
@WebService(endpointInterface = "mtomtest.wsserver.mtomserver")
@StreamingAttachment(parseEagerly=true, memoryThreshold=4000000L, dir="D:\\projects\\123\\files\\temp")
public class mtomserverImpl implements mtomserver {
注意硬編碼值StreamingAttachment註釋。我希望能夠從我的代碼中動態初始化這些值 - 任何東西的方式?所以我想這樣做(在服務器上):
configureMyself() {
setMemoryThreshold(12345);
setTempDir("c:\\mydirectory");
}