CREATE TABLE students (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
major VARCHAR(50),
contact VARCHAR(20)
);
CREATE TABLE companies (
id INT AUTO_INCREMENT PRIMARY KEY,
position VARCHAR(50) NOT NULL,
company_name VARCHAR(50),
contact_info VARCHAR(50)
);
]]>
@RestController
@RequestMapping("/students")
public class StudentController {
@Autowired
private StudentService studentService;
@GetMapping("/{id}")
public ResponseEntity
return ResponseEntity.ok(studentService.getStudentById(id));
}
}
]]>