//错误的写法
<img th:src="@{/getImage/${attDesc.identityImgN}" alt="身份证反面">
//正确的写法
<img th:src="@{/getImage/{filename}(filename=${attDesc.identityImgN})}" alt="身份证反面">