如何用DB(Spring)在UI上显示段落文本?

时间:2017-03-15 04:25:16

标签: spring thymeleaf

我在数据库中有段落的文字,我可以在java中看到System.out.println();的这个文字,但是当我在UI上显示这个文字时,我看到一行中的所有文字。Data Base

弹簧:

    ModelAndView modelAndView = new ModelAndView();
    modelAndView.addObject("allText",dtos);
    modelAndView.setViewName("test");
    return modelAndView;

所以我尝试在UI上显示:

 <div th:each="text: ${allText}">
      <div align="center" >
          <b><span th:text="${text.description}">description</span></b>
      </div>
 </div>

我的错误在哪里?

1 个答案:

答案 0 :(得分:0)

th:utext="${#strings.unescapeJava(#strings.replace(#strings.escapeJava(text.description),'\n','&lt;br /&gt;'))}"