springboot + thymeleaf 对图片的处理

  <label class="col-sm-2 control-label">反馈内容:</label><!--th:text="${baseFeedbackInfo.feedbackContent}" -->
            <div class="form-control-static"  th:utext="${baseFeedbackInfo.feedbackContent}">
            </div>

在前端页面接收后台传来的内容,里面包含图片,本来我的代码是这样的

<!--th:text="${baseFeedbackInfo.feedbackContent}" -->
图片出不来,出来是:<img src="http://10.18.28.100/group1/M00/00/00/ChIcZF7px9iAWVmVABNjPD__8ZI864.jpg" />这样的。
后来把text变为utext就可以出来图片了。
原因是:

原文地址:https://www.cnblogs.com/liqinzhen/p/13153255.html