Skip to content
Advertisement

Is there a way to disable Thymeleaf, or only enable for certain REST calls?

For instance, I have a basic POST that returns an html called “result” using Thymeleaf. This works and is cool.

JavaScript

But I have another totally unrelated method, that does something different, and returns not a template.

JavaScript

Naturally, I get an exception:

JavaScript

because I’m intentionally not resolving a template. Can I turn off ThymeLeaf for this method? My Rest API is multi-purpose, and it would be rather unhelpful if ThymeLeaf ends up disrupting the whole project.

Thanks

Advertisement

Answer

Just to provide a separate answer for this question.

As stated in the comments, you should use @ResponseBody annotation on your method.
That’s all you need.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement