Thymeleaf @{}和${}嵌套使用的问题解决
//错误的写法
<img th:src="@{/getImage/${attDesc.identityImgN}" alt="身份证反面">
//正确的写法
<img th:src="@{/getImage/{filename}(filename=${attDesc.identityImgN})}" alt="身份证反面">
//错误的写法
<img th:src="@{/getImage/${attDesc.identityImgN}" alt="身份证反面">
//正确的写法
<img th:src="@{/getImage/{filename}(filename=${attDesc.identityImgN})}" alt="身份证反面">