Skip to content

Instantly share code, notes, and snippets.

@moomdate
Created September 11, 2022 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moomdate/2a3a488f3bf073727f73e8f438a5cfe8 to your computer and use it in GitHub Desktop.
Save moomdate/2a3a488f3bf073727f73e8f438a5cfe8 to your computer and use it in GitHub Desktop.
example
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