Skip to content

Intial commit #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@
</dependency>
</dependencies>
</project>

Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@
@RestController
@RequestMapping("/student")
public class StudentController {

@Autowired
private StudentService studentService;

@Autowired
private StudentRepository studentRepository;

Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/springbootcrudexample/controller/Test.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.springbootcrudexample.controller;

public class Test {
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class Student {
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;


@Column(name = "name")
private String name;

Expand Down