Created
September 11, 2022 05:23
-
-
Save moomdate/2a3a488f3bf073727f73e8f438a5cfe8 to your computer and use it in GitHub Desktop.
example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class StudentService { | |
@Autowired | |
StudentRepository studentRepository; | |
public void saveStudent(){ | |
final Student student = new Student(); | |
student.setName("ABC Name"); | |
student.setAge(15); | |
studentRepository.save(student); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment