how to set configuration for redis server in java spring boot code example
Example 1: spring boot redis example
Student engStudent = new Student(
"Eng2015001", "John Doe", Student.Gender.MALE, 1);
Student medStudent = new Student(
"Med2015001", "Gareth Houston", Student.Gender.MALE, 2);
studentRepository.save(engStudent);
studentRepository.save(medStudent);
Example 2: spring boot redis example
Student retrievedStudent =
studentRepository.findById("Eng2015001").get();