欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring-boot Controller的使用

程序员文章站 2022-03-11 09:00:42
...

spring-boot Controller的使用

Controller结合模板使用:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

在resource文件下建立templates目录

spring-boot Controller的使用

package com.example.demo.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class HeController {
    @RequestMapping(value = "/cxx",method = RequestMethod.GET)
    public String gethtml(){
        return "index";
    }
}
spring-boot Controller的使用