I am using Spring Boot 1.5.4 (Spring MVC) and Thymeleaf 3.0.6 (Layout Dialect 2.2.2)
Assume that I am rendering the model from a Spring MVC Controller method with a Thymeleaf template (template A), which outputs HTML A.
Is it possible, from within template A, to call/invoke another Spring MVC controller method (which then will render the model with a different thymeleaf template) outputting HTML B, and load the rendered results into HTML A?
Something like what the struts2 action tag does with the executeResult=true Param. https://www.tutorialspoint.com/struts_2/struts_action_tag.htm
I've looked into thymeleaf include and replace, but they only seem to work with loading the html fragment not an entire Spring MVC Request