54 CHEN

Rose手册第三章四节:controller层:自定义http参数支持

rose 3.4.1 http参数支持的一些前言 —————————————–
* 我们把一个controller的类里的一个方法叫做action,它实际对应用户看到的一个url。
* 在action里可以接收各种各样的参数,也可以自己定义需要的参数。
* rose自己定义了一些常见的类型,基本上很有机会会用到自己定义,但是在某些情况下,也是个不错的选择:
* 用来对指定的参数类型的值进行固定的修改和赋值。

3.4.2 看一个例子 ————————–

ChenBeanResolver.java放在controllers目录下:

  1. public class ChenBeanResolver implements ParamResolver {

  2. @Override

  3. public Object resolve(Invocation inv, ParamMetaData metaData) throws Exception {

  4. for (String paramName : metaData.getParamNames()) {

  5. if (paramName != null) {

  6. Chen chen = new Chen();

  7. String value1 = inv.getParameter(“chen1”);

  8. String value2 = inv.getParameter(“chen2”);

  9. chen.setChen1(value1);

  10. chen.setChen2(value2);

  11. return chen;

  12. }

  13. }

  14. return null;

  15. }

  16. @Override

  17. public boolean supports(ParamMetaData metaData) {

  18. return Chen.class == metaData.getParamType();

  19. }

  20. }

* 上述代码的意思:
* 如果在action里一个参数的类型是Chen(com.chen.model.Chen),就会走这个resolver,这里对两个参数进行了组装。
* 用户如果访问的参数里传入了chen1和chen2的值,则会直接组装出来一个Chen对象。

* 配合上述resolver的action代码为:

  1. @Get("/param")
  2. public String param(Chen chen) throws Exception {
  3. return “@hello world:” + chen.getChen1() + “:” + chen.getChen2();
  4. }

* 用户访问:http://127.0.0.1/param?chen1=1&chen2=2 将会返回:
** hello world:1:2

3.4.2 rose内置的参数支持 ——————————
除了上述的自定义resolver外,rose还内置了丰富的resolver,都是大家的经验总结,使用起来会非常方便,它们是:
* 所有的基础java类型,都可以直接使用,rose进行自动转换,比如在action中的类型为long id,则id可以转为数字,不再需要从string转为long。
* array/map/bean同样可用,它们的接收参数规则为:
* ?id=1,2,3,4 或者 ?id=1&id=2&id=3 对应 @Param(“id”) int[] idArray
* ?map:1=paoding&map:2=rose 对应 @Param(“map”) Map map
* POST http://127.0.0.1/user?id=1&name=rose&level.id=3 对应接收代码:

  1. @Post
  2. public String post(User user) {
  3. return “@” + user.getId() + “; level.id=” + user.getLevel().getId();
  4. }

* 代码中User是一个自定义的bean,有属性id,name,level等。

文中所提及代码均在 https://github.com/XiaoMi/rose/tree/master/rose-example 提供。
文档持续修改版本在 https://github.com/XiaoMi/rose/tree/master/chapter_3_4

原创文章如转载,请注明:转载自五四陈科学院[http://www.54chen.com]

Posted by 54chen java

« rose手册第三章三节:controller层:ErrorHandler支持