Hi, I am curious what is more "kosher" way of accesing data from thymeleaf template... using:
- Model model
or 2. using calling of controller methods ?
For example I need to get list of items to thymeleaf template, I can sent the "List items" via Model, or call it via someController.getListOfItems() directly in template
Or are they equal ?
Thanks