タペストリー初心者です。タペストリー企画ではこちら
パラメータはX.propertiesファイルに あります。
SomeService.urlDoOnething=http://etc/etc1
SomeService.urlDoOtherthing=http://etc/etc2
1.javaで
@Inject
@Value("SomeService.urlDoOnething")
private String SomeServiceurlDoOnething
@Inject
@Value("SomeService.urlDoOtherthing")
private String SomeServiceurlDoOtherthing
2.Javaで
request = new ClientRequest(SomeServiceurlDoOnething); ....
SomeService[N].url*thing パラメーターを実装する必要があります。ユーザーはコンボボックスからサービスを選択できます (コンボボックスをエレガントに実装する方法も考えます)。
私はタペストリーについてあまり知らず、docs/google の検索はまだあまり役に立ちませんでした..ここで良いアドバイスを見つけることができるかもしれません.