THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
Tapestry IOC makes use of runtime-evaluated symbols to handle certains certain types of configuration tasks.
...
Code Block | ||||
---|---|---|---|---|
| ||||
public static MyService build( @InjectService("${some-service-id}") Collaborator collab) { return . . . ; } |
Here, the symbol name, some-service-id
is a service id, such as WackyCollaborator
.
Although not shown here, it is possible to use multple multiple symbols inside the string, or mix literal text with symbols.
...