1 Star 0 Fork 0

fanzipeng31/springboot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
StudentController.java 922 Bytes
一键复制 编辑 原始数据 按行查看 历史
fanzipeng31 提交于 2022-03-22 00:48 . one
package com.sptpc.demo.controller;
import com.sptpc.demo.mode.Student;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.time.LocalDate;
@Slf4j
@RestController
@RequestMapping("/stu")
public class StudentController {
@PostMapping("/add")
public Student addNewDrink(Student student){
// log.info("创建新饮品:{}",Student);
// Drink addStudent = Student.builder().id(1)
// .name("")
// .build();
Student addStudent = Student.builder()
.name("你的名字")
.major("移动应用开发")
.adminssionDate(LocalDate.of(2019,9,1))
.build();
return addStudent;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/fan-zipeng/springboot.git
[email protected]:fan-zipeng/springboot.git
fan-zipeng
springboot
springboot
master

搜索帮助