HTML页与JSP页

    在HTML中循环遍历数据库中数据时不用<c: forEach>而是用< th:--->,<c: forEach>会破坏HTML页,并在配置文件配置视图解析器themeleaf,导入几个重要的包:

  lombok-1.16.2.jar   thymeleaf-2.1.4.RELEASE.jar     thymeleaf-spring4-2.1.4.RELEASE.jar   unbescape-1.1.0.RELEASE.jar

<tr th:each="user,status:${list}">表示循环。

   <a th:href="@{deleteid(userID=${user.userID})}">表示链接(格式!)

   <span th:text="${user.userID}">12</span>用来承接传过来的值

   <form action="all" th:object="${UserBean}" method="post">传值时要用此格式声明

   <input name="password" type="text" th:value="${UserBean.password}"/>用文本框承接传过来的值

 

<!-- thymeleaf的视图解析器 -->
   <bean id="templateResolver"
	class="org.thymeleaf.templateresolver.ServletContextTemplateResolver">
	<property name="prefix" value="/WEB-INF/html/" />
	<property name="suffix" value=".html" />
	<property name="templateMode" value="HTML5" />
	<property name="order" value="1"/>	
    </bean>
    <bean id="templateEngine" class="org.thymeleaf.spring4.SpringTemplateEngine">
	<property name="templateResolver" ref="templateResolver" />
    </bean>	
    <bean id="viewResolverThymeleaf" class="org.thymeleaf.spring4.view.ThymeleafViewResolver">
        <property name="templateEngine" ref="templateEngine" />
        <property name="characterEncoding" value="UTF-8"/>
        <property name="order" value="0"/>
   </bean>

 

你可能感兴趣的:(HTML页与JSP页)