thymeleaf / thymeleaf-extras-tiles2

Thymeleaf integration with Apache Tiles 2.x
http://www.thymeleaf.org
36 stars 18 forks source link

How to use ViewPreparer? #21

Open hurelhuyag opened 10 years ago

hurelhuyag commented 10 years ago

I tested sample ViewPreparer. but doesn't work.

@Component("testPreparer")
public class TestPreparer implements ViewPreparer {

    @Override
    public void execute(TilesRequestContext tilesContext, AttributeContext attributeContext) {
          attributeContext.putAttribute("message", new Attribute("hello world"));
    }
}

in definition:

<definition name="signin" template="signin" preparer="testPreparer" />

signin.html

...
<div th:text="${message}">prototype message</div>
...