gpt4 book ai didi

java - 在Spring中使用@QueryParam

转载 作者:行者123 更新时间:2023-12-01 16:50:58 24 4
gpt4 key购买 nike

我正在寻找在 Spring 中使用 @QueryParam 的简单示例。我的想法是有一个像这样的链接,它将获取 id 值,运行我的 java 类并显示返回的字符串。我的问题是没有找到返回值。

http://localhost:8080/recipesinfo?id=274596

出现意外错误(类型=内部服务器错误,状态=500)。计算 SpringEL 表达式时出现异常:“recipesinfo.step”(模板:“recipesinfo_result” - 第 12 行,第 22 列)

DemoApplication.java

RecipesInfo repinfo = new RecipesInfo();
@RequestMapping("/recipesinfo")
public String getInfo (@RequestParam("id") int id) throws IOException {

repinfo.execute(id);

return "recipesinfo_result";
}




public static void main(String[] args) throws Exception {
SpringApplication.run(DemoApplication.class, args);

}

食谱信息_结果.html

<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Recipes</title>
</head>
<body>
<p class="title"><a th:text="${recipesinfo.step}"></a><br></body>
</html>

RecipesInfo.java

public String execute(int id) throws IOException { 

//using id in a Http request here and returning String step (the problem isn't here)

return step;
}

我在一个 Web 服务中做了类似的事情,该服务正在运行,但只是返回 JSON。

最佳答案

您需要将查询参数绑定(bind)到模型,以便将其传递到您的 View 页面。

@RequestMapping("/recipesinfo")
public String getInfo (@RequestParam("id") int id, Model theModel)) throws IOException {
theModel.addAttribute("recipesinfo",id);

return "recipesinfo_result";
}

食谱信息_结果.html

<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Recipes</title>
</head>
<body>
<p class="title"><a th:text="${recipesinfo}"></a><br></body>
</html>

关于java - 在Spring中使用@QueryParam,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61688084/

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