springboot controller进入H5页面配置

controller:

 /**
     * 进入邀请页面,这种方式不用配置前后缀
     */
    @RequestMapping(value = "/invitationPage", method = {RequestMethod.POST, RequestMethod.GET})
    public String invitationPage(@RequestParam("oldUserId") long oldUserId) {
        return "redirect:welcome.html?oldUserId=" + oldUserId;
    }

资源文件路径:

springboot controller进入H5页面配置_第1张图片

welcome.html:




    
    Title


        this is my olduserId .is ${oldUserId}



你可能感兴趣的:(springboot,springMvc)