动态更改基本网址

时间:2017-10-25 20:17:18

标签: java spring-mvc spring-boot

我有一个案例,我想点击按钮将我的网址http://localhost:8080/test更改为http://xxx.localhost:8080/test。单击按钮,它将通过href“/ test”进入我的控制器。我的Spring控制器代码是

@RequestMapping(value = "/test")
public String test(Model model) {
    try{    
        model.addAttribute("name", "A B C");
        return "sample";
    } catch(Exception e) {
         e.printStackTrace();
         return "error";
    }
}

其中sample.jsp是我的视图名称。当页面加载时,我想要如上所述更改基本URL。

0 个答案:

没有答案