Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fix broken links

...

These symbols are used inside the Value and InjectService annotations.

For example:

Code Block
java
java
  public static MyService build(
      @InjectService("${some-service-id}") Collaborator collab)
  {
    return . . . ;
  }

...

Symbols are resolved by the SymbolSource service. The SymbolSource checks against an ordered list of SymbolProvider objects.

Additional symbol providers may be employed by contributing to the tapestry.ioc.SymbolSource service configuration, which is an ordered list of SymbolProviders.

...