Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
91967 authored and 91967 committed Jul 25, 2024
1 parent e7e8cc1 commit 7f1e239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/src/main/java/com/example/demo/HelloWorldSpringBoot.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public String HelloWorld() {
}

@GetMapping(value="/studentinfo")
public List<Student> studentInfo() {
public List<Student> studentInfo() {
Student stu = new Student();
ArrayList<Student> students = new ArrayList<Student> ();
stu.setId(101);
Expand All @@ -32,7 +32,7 @@ public List<Student> studentInfo() {
stu1.setId(102);
stu1.setName("Yashika");
stu1.setSection("Mango");
stu1.setAddress("19, 1st floor, Gods Gift Layout,560049");
stu1.setAddress("19, 1st floor, God s Gift Layout,560049");
stu1.setSchoolName("Kidzee");
students.add(stu1);
return students;
Expand Down

0 comments on commit 7f1e239

Please sign in to comment.