@RequestMapping("/") Annotation that enters the page by default

// will enter the index page first
@RequestMapping("/")
    public String hello() {
        System.out.println("affiAAS");
        return "index";
    }
//Click on the hyperlink of index.jsp to enter the success.jsp page
    @RequestMapping("/helloSpring")
    public String helloSpring() {
        System.out.println("222222222");
        return "success";
    }

//index.jsp
<body>
    <a href="helloSpring">nihao </a>
</body>

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=327070725&siteId=291194637