zoukankan      html  css  js  c++  java
  • 【SpringMVC 从 0 开始】SpringMVC RESTFul 实战案例

    一、增加控制器方法

    在控制器类 EmployeeController 中,添加访问列表方法。

    @Controller
    public class EmployeeController {
    
        @Autowired
        private EmployeeDao employeeDao;
    
        @RequestMapping(value = "/employee", method = RequestMethod.GET)
        public String getAllEmployee(Model model) {
            Collection<Employee> employeeList = employeeDao.getAll();
            model.addAttribute("employeeList", employeeList);
            return "employee_list";
        }
    }
    
    • 这里就没写 service 层了,直接在 getAllEmployee() 方法中操作 dao 层,也就是调用 employeeDao.getAll()来获取所有员工信息,返回是一个列表集合。

    • 接着把数据放到 request 域里,供前端页面使用,这里使用前面讲过的 Model 方法。

    • model.addAttribute("employeeList", employeeList); 中,2个分别对应 key - value,页面里使用 key 可以获取到 value 。

    • 最后返回 employee_list 页面。

    二、编写列表页 employee_list.html

    控制器里返回了 employee_list ,这是一个 html 页面,依然写在 templates 下面:

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>员工信息</title>
    </head>
    <body>
        <table border="1" cellspacing="0" cellpadding="0" style="text-align: center;">
            <tr>
                <th colspan="5">员工列表</th>
            </tr>
            <tr>
                <th>id</th>
                <th>lastName</th>
                <th>email</th>
                <th>gender</th>
                <th>options</th>
            </tr>
            <!--循环后端放到request域中的数据 employeeList-->
            <tr th:each="employee : ${employeeList}">
                <td th:text="${employee.id}"></td>
                <td th:text="${employee.lastName}"></td>
                <td th:text="${employee.email}"></td>
                <td th:text="${employee.gender}"></td>
                <td>
                    <a href="">删除</a>
                    <a href="">更新</a>
                </td>
            </tr>
        </table>
    </body>
    </html>
    
    • 这里使用了简单的样式,使其看起来更像个列表。

    • 每一行的数据,要通过循环后端放到 request 域中的数据 employeeList,得到单个对象 employee,然后就可以将对象的属性获取出来展示, 比如 employee.id 。

    • th:each${}这些都是 thymeleaf 的用法。

    三、访问列表页

    重新部署应用。

    因为在首页中,已经加了跳转到列表页的超链接,直接点击。

    访问成功,忽略掉好不好看的问题,起码这是一个正常的列表。


    感谢《尚硅谷》的学习资源。

    --不要用肉体的勤奋,去掩盖思考的懒惰--
  • 相关阅读:
    Web scraping tutorials with FMiner
    javascript
    Installing perl and writing your first perl program in Ubuntu
    c++
    sudo apt-get install libfcgi libfcgi-dev
    微信JSApi支付~订单号和微信交易号
    微信JSApi支付~坑和如何填坑
    WebApi系列~安全校验中的防篡改和防复用
    EF架构~CodeFirst自关联表的插入
    实时监控Cat之旅~对请求是否正常结束做监控(分布式的消息树)
  • 原文地址:https://www.cnblogs.com/pingguo-softwaretesting/p/15150519.html
Copyright © 2011-2022 走看看