gpt4 book ai didi

java - 初学者 - Spring boot - 如何打印@RequestParam

转载 作者:行者123 更新时间:2023-12-02 02:37:16 26 4
gpt4 key购买 nike

我正在学习 Spring Boot

如何在 show 方法中显示来自 @RequestParam 的参数(城市)?

(我有两个 html。第一个是 formbutton 用于提交,第二个页面用于显示 String > 来自表单的值)。

@GetMapping("/show")
public String show(@RequestParam ("city") String city, ModelMap modelMap){
modelMap.addAttribute("article");
System.out.println(city);
return "article/show";
}

最佳答案

如果您想在 View 中显示城市,您必须将城市添加到模型中,例如:

model.addAttribute("city", city);

以及 View 内部${city}

如果您想使用控制台打印参数,则可以使用记录器:

在你的controllore中以这种方式声明它

最终 Logger logger = LoggerFactory.getLogger(YourClass.class);

然后在方法内部:

 @GetMapping("/show")
public String show(@RequestParam ("city") String city, ModelMap modelMap){
modelMap.addAttribute("article");

logger.info("whatever you want "+city);

return "article/show";
}

关于java - 初学者 - Spring boot - 如何打印@RequestParam,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46114823/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com