私のConfig.groovy
中で、私は定義された変数を持っています:
bbws.baseUrl = "http://localhost:8080/ballot-builder-ws/"
私のspring/resources.groovy
中には次のものがあります:
importBeans "classpath:ballot-builder-client.spring.xml"
にballot-builder-client.spring.xml
は、次のプロパティプレースホルダーが含まれています。
<jaxrs:client
id="ballotBuilderWebService"
address="${bbws.baseUrl}"
serviceClass="com.xx.xx.xx.BallotBuilderWebService"
inheritHeaders="true">
.....
</jaxrs:client>
これを機能させることができないようです。Grailsのドキュメントには、これは可能であると書かれていますが、それ以上はあまり役に立ちません。誰かがこれが可能であることを確認/拒否できますか?私は何が間違っているのですか?