CustomerController.java
public class CustomerController {
@Autowired
CustomerRepository customerRepository;
@RequestMapping("/")
public String test(HttpSession session){
List<Customer> customers = customerRepository.findAll();
session.setAttribute("customers",customers);
return "test";
}
}
CustomerRepository .java
public interface CustomerRepository extends JpaRepository<Customer, Long> {
List<Customer> findAll();
}
html
<table >
<tr th:each="c, State : ${session.customers}">
<td th:text="${c.name}"></td>
<td th:text="${c.passWord}"></td>
</tr>
</table>
CustomerController.java
public class CustomerController {
@Autowired
CustomerRepository customerRepository;
@RequestMapping("/")
public String test(HttpSession session){
Customer customers = customerRepository.findOne();
session.setAttribute("customers",customers);
return "test";
}
}
CustomerRepository .java
public interface CustomerRepository extends JpaRepository<Customer, Long> {
Customer findOne();
}
html
<table >
<tr th:if="${session.customers} != null">
<td th:text="${session.customers.name}"></td>
<td th:text="${session.customers.passWord}"></td>
</tr>
</table>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之家整理,本文链接:https://www.bmabk.com/index.php/post/22212.html