Versions Compared

Key

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

...

Code Block
java
java
public class MyService implements MyServiceInterface
{
  private boolean productionMode;

  public MyService(@Value("${tapestry.production-mode}") boolean productionMode, ...)
  {
    this.productionMode = productionMode;
    . . .

Here Tapestry has coerced the "tapestry.production-mode" symbol to a boolean to be injected.

...