Getting started with MVC(4)

本文详细介绍了MVC架构中视图导航的设计与实现方法,包括页面导航路径定义、视图展示方式及POST-REDIRECT-GET模式等内容,并提供了具体示例。

Page navigation

As introducing the feature pieces of the MVC specification, we have visited most of views in this demo. In fact, when you desgin a website, you should have a map for the page navigation among all views.

View navigation summary

  1. When the appliation starts up, it will display the task list view.
  2. User can create a new task by clicking the New Task button, the task creating view is displayed.
  3. When user input the task title and description, submit the form.
    • If the task is submitted successfully, return the main task list view. The new created task should be in the list.
    • If the task form data is invalid, show the validation errors.
  4. User can edit the new created task by click edit icon.
    • It will read the task from database and fill the existing data into form fields
    • The submission progress is similiar with the new task subflow described in above 3.
  5. User can update the task status(TODO to DOING, or DOING to DONE). When the status is changed successfully, return to the task list.
  6. User can delete the DONE task. When it is deleted, return to the task list.

//todo add a graph to display the navigations []()

View navigation path definition

We have used GET, POST, PUT, DELETE http methods to process basic CRUD operations, listed in the following table.

Navigation path HTTP method View page Descritption
/tasks GET tasks.jspx Task list view
/tasks/new GET add.jspx Display new task view
/tasks POST redirect:tasks Submit task form, save task, and redirect to task list view
/tasks/{id}/edit GET edit.jspx Display edit task view
/tasks/{id} PUT redirect:tasks Submit task form, update task, and redirect to task list view
/tasks/{id} DELETE redirect:tasks Submit task form, delete task, and redirect to task list view
/tasks/{id}/status PUT redirect:tasks Submit task form, update task status, and redirect to task list view

It is easy to understand. As you see, the navigation rules are very similar with the paths for RESTful APIs.

Display views

In the above paths, the task list view, new task view and edit task view can display the views directly via inputing the url path in browser locaiton bar. Others are POST submission, they will redirect to the task list view.

There are several approaches provided in MVC specification to navigate the view path.

  1. Add@Viewannotation to avoidcontroller method.
  2. Return aViewableobject to a controller method.
  3. Return aResponseentity which body content includes the view path.

    public Response someAction(){
         return Response.ok("redirect:tasks").build();
    }
  4. Return aStringtype value directly.

    public String someAction(){
         return "redirect:tasks";
    }

The 1 and 2 are new added to the MVC specification, and the 3rd is reusing the existing JAXRS specification.

POST-REDIRECT-GET pattern

The new task form submission and edit task form submission follow the POST-REDIRECT-GET pattern.

  1. When the form is submitted successfully, a form POST request is sent to the server.
  2. After the server received the request, and processed it, it will REDIRECT to the target view.
  3. And perform a new GET request on the target view.

Source codes

  1. Clone the codes from my github.com account.

    https://github.com/hantsy/ee8-sandbox/

  2. Open the mvc project in NetBeans IDE.

  3. Run it on Glassfish.
  4. After it is deployed and runging on Glassfish application server, navigate http://localhost:8080/ee8-mvc/mvc/tasks in browser.

转载于:https://my.oschina.net/hantsy/blog/661431

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值