0

我刚开始学习jspspring。我在网络上删除formattedDate(作为defaultHomeController.java并更改为model.addAttribute("answer", "yes")和在网络上,它只显示。我不明白为什么。我试图把定义像String answer = "yes",但它没有工作。

这是HoneController.java

    @Controller
    public class HomeController {
        @RequestMapping("/main")
        public String home(Locale locale, Model model) {
            model.addAttribute("answer", "yes");

            return "home";
        }
    }

这是home.jsp

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ page session="false" pageEncoding="UTF-8" %>
    <html>
    <head>
        <title>Home Page</title>
    </head>
    <body>
    <h1>
        hello
    </h1>
    <P> Is it happening? : ${answer}. </P>
    </body>
    </html>

没有错误信息 这就是结果。

4

0 回答 0