gpt4 book ai didi

java - Spring MVC 不在 View 中显示数据

转载 作者:行者123 更新时间:2023-11-30 04:55:45 25 4
gpt4 key购买 nike

Possible Duplicate:
JSP: EL expression is not evaluated

我的 Controller 中有以下代码。

@RequestMapping(value = "/sum", method = RequestMethod.GET)
public String sum(@RequestParam("input1") String value1,
@RequestParam("input2") String value2, ModelMap model) {
model.addAttribute(
"msg",
Integer.toString(Integer.parseInt(value1)
+ Integer.parseInt(value2)));
return "index";
}

以下是我的观点:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<html>
<body>
<h2>Hello World!</h2>
<h2>Movie Name : <c:out value="${msg}"></c:out></h2>
</body>
</html>

但是我的输出是

Hello World!
Movie Name : ${msg}

我哪里错了?

最佳答案

这是因为 jSTL 库不可用。可以将其复制到 WEB-INF/lib 或直接复制到 Tomcat/lib 目录并重新启动 Tomcat。

关于java - Spring MVC 不在 View 中显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8609623/

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