Control的方法中return不跳转页面

2019-08-16 10:14:05来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

Control的方法中return不跳转页面

返回的默认为resource/templetes下的html或jsp文件  
1.Control包中的类如果加入的注解为@Controller 「使用@Controller注解,在对应方法上视图解析切可以解析return的jsp\html页面,并且跳转到相对应的页面」  
@Controller
public class UnitConntrol {
    @Autowired
    UnitService unitService;
    @RequestMapping(value = "/findUintId/{id}",method = RequestMethod.GET)
    public Object findUnitId(@PathVariable("id") Integer id, Model model){
        System.out.println("jinru");
        Unit unit = unitService.selectByPrimaryKey(id);
        System.out.println(unit.getName());
        model.addAttribute(unit);
        return "unitview";
    }
/**
——第二种方法---
@RequestMapping(value = "/findUintId/{id}",method = RequestMethod.GET)
public @ResponseBody ModelAndView findUnitId(@PathVariable("id") Integer id, Model model){
    System.out.println("jinru");
    Unit unit = unitService.selectByPrimaryKey(id);
    System.out.println(unit.getName());
    model.addAttribute(unit);
    return new ModelAndView("unitview.html");
}
*/
}

2.Control包中的类如果加入的注解为@RestController{RestController = ResponseBody + Controller}

方法return无法返回jsp/html页面,配置的视图解析器 InternalResourceViewResolver不起作用,返回的内容就是Return里的内容。  
@RestController
public class UserControl {
    @Autowired
    UserService userService;
//根据ID对user查看
    @RequestMapping(value = "/findByUserid/{id}",method = RequestMethod.GET)
    public ModelAndView findByUserid(@PathVariable("id")Integer id, Model model){
        System.out.println(“running findByUserid");
        User user =  userService.findByUserid(id);
        System.out.println(user.getName());
        model.addAttribute("user",user);
        return new ModelAndView("userview.html");
    }
}

原文链接:https://www.cnblogs.com/iisfeng/p/11170731.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Spring事务管理

下一篇:十分钟读懂:Java并发——CSP模型