gpt4 book ai didi

java - 使用 Spring 框架在 JSP 页面中显示可变长度的字符串列表

转载 作者:行者123 更新时间:2023-11-28 22:41:22 25 4
gpt4 key购买 nike

是否可以使用 Spring 框架在 JSP 页面中显示可变长度的字符串列表(或集合)?

目前我的 Java Controller 中有以下内容:-

@Controller
@RequestMapping("/")
public class HelloController
{
@RequestMapping(method = RequestMethod.GET)
public String printHello(ModelMap model)
{
model.addAttribute("message1", "Cat");
model.addAttribute("message2", "Dog");
model.addAttribute("message3", "Fish");
model.addAttribute("message4", "Bird");

return "hello";
}
}

目前我在“hello.jsp”中有以下内容:-

<%@ page contentType="text/html; charset=UTF-8" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<p>${message1}</p>
<p>${message2}</p>
<p>${message3}</p>
<p>${message4}</p>
</body>
</html>

是否可以使用可变长度列表(或集合)来做到这一点?

谢谢你的时间,

詹姆斯

最佳答案

放一个List对象进入模型,并使用 <c:forEach> 循环迭代列表。

model.addAttribute("messages", Arrays.asList("Cat", "Dog", "Fish", "Bird"));
<c:forEach var="message" items="${messages}">
<p>${message}</p>
</c:forEach>

关于java - 使用 Spring 框架在 JSP 页面中显示可变长度的字符串列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33534978/

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