La risposta accettata non sembra funzionare per Thymeleaf 3; ecco un aggiornamento. Si prega di notare che sto usando Spring; questo potrebbe non funzionare per le app non Spring.
<table>
<tr th:each="var : ${#vars.getVariableNames()}">
<td th:text="${var}"></td>
<td th:text="${#vars.getVariable(var)}"></td>
</tr>
<!-- Adding these manually because they're considered special.
see https://github.com/thymeleaf/thymeleaf/blob/thymeleaf-3.0.3.RELEASE/src/main/java/org/thymeleaf/context/WebEngineContext.java#L199
-->
<tr>
<td>param</td>
<td th:text="${#vars.getVariable('param')}"></td>
</tr>
<tr>
<td>session</td>
<td th:text="${#vars.getVariable('session')}"></td>
</tr>
<tr>
<td>application</td>
<td th:text="${#vars.getVariable('application')}"></td>
</tr>
</table>
Detto questo, quello che ho fatto è stato creato un Bean standalone che rende le cose un po 'più bella e discariche ai log anziché in HTML:
@Component
public class ThymeleafDumper {
private Logger log = LoggerFactory.getLogger(ThymeleafDumper.class);
public void dumpToLog(WebEngineContext ctx) {
log.debug("Thymeleaf context: {}", formatThisUpNicely(ctx));
}
// ... etc
}
Dove formatThisUpNicely
può usare ctx.getVariableNames()
, mettere il risultati in un SortedMap
, esportare in json
, qualunque sia. Non dimenticare quelle tre variabili "speciali"!
Poi esporre un'istanza di esso come un @ModelAttribute
in un Controller
o un ControllerAdvice
:
@ControllerAdvice
public class SomeControllerAdvice {
@Autowired
private ThymeleafDumper thymeleafDumper;
@ModelAttribute("dumper")
public ThymeleafDumper dumper() {
return this.thymeleafDumper;
}
}
Poi nel mio modello di esecuzione:
<div th:text="${dumper.dumpToLog(#vars)}"/>
fonte
2017-02-08 02:49:01
Fantastico - questo in realtà dà ancora più di quello che volevo: include tutti i bean a molla disponibili per le viste, non solo i modelli che ho inserito. Informazioni molto utili! –
@ the4dK sei un risparmiatore di vita! – Ali