I\'m trying to configure Spring 5 and Thymeleaf 3 together. I\'m working on Eclipse, I build with \'clean install\' and run the app with \'springboot:run\'.
I\'ve setup a contro
@RestController implicitly puts @ResponseBody on your methods which in your case causes your returned String to be passed directly into the HttpResponse object (instead of being interpreted as a view name).
So just remove @RestController in MyController class.