I would like to know how to disable the browser cache, using HTML5.
I found this useful post (How to control web page caching, across all browsers?), but it contains the info only for HTML4 or other languages.
In my web application I use Java (Spring Boot) and Thymeleaf to produce HTML5. I would like to understand what are the equivalent tags for HTML5, of the following HTML tags:
<meta http-equiv="Cache-Control" content="no-cache"/> <meta http-equiv="Pragma" content="no-cache"/> <meta http-equiv="Expires" content="0" />
It's fine either through HTML5 tags, or even through a Java side solution.