- Я получаю сообщение об ошибке с идентификатором: 1
- Я пытаюсь подписаться на это видео – https://www.youtube.com/watch?v =vpf4LB54rVw
import net.javaguides.springboot.bean.Student;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class StudentController {
// http://localhost:8080/student
@GetMapping("student")
public Student getStudent () {
Student student = new Student(
id: 1,
firstName: "Ramesh",
lastName: "Fadtare"
);
return student;
}
}
Подробнее здесь: https://stackoverflow.com/questions/792 ... ent-object
Мобильная версия