Skip to content

Commit d7aed3c

Browse files
committed
Added spring boot security
1 parent cedf2ab commit d7aed3c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.javaguides.springboot;
1+
package net.alanbinu.springboot;
22

33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.javaguides.springboot.controller;
1+
package net.alanbinu.springboot.controller;
22

33
import java.util.HashMap;
44
import java.util.List;
@@ -16,9 +16,9 @@
1616
import org.springframework.web.bind.annotation.RequestMapping;
1717
import org.springframework.web.bind.annotation.RestController;
1818

19-
import net.javaguides.springboot.exception.ResourceNotFoundException;
20-
import net.javaguides.springboot.model.Employee;
21-
import net.javaguides.springboot.repository.EmployeeRepository;
19+
import net.alanbinu.springboot.exception.ResourceNotFoundException;
20+
import net.alanbinu.springboot.model.Employee;
21+
import net.alanbinu.springboot.repository.EmployeeRepository;
2222

2323
@CrossOrigin(origins = "http://localhost:3000")
2424
@RestController
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.javaguides.springboot.exception;
1+
package net.alanbinu.springboot.exception;
22

33
import org.springframework.http.HttpStatus;
44
import org.springframework.web.bind.annotation.ResponseStatus;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package net.javaguides.springboot.repository;
1+
package net.alanbinu.springboot.repository;
22

33
import org.springframework.data.jpa.repository.JpaRepository;
44
import org.springframework.stereotype.Repository;
55

6-
import net.javaguides.springboot.model.Employee;
6+
import net.alanbinu.springboot.model.Employee;
77

88
@Repository
99
public interface EmployeeRepository extends JpaRepository<Employee, Long>{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.javaguides.springboot;
1+
package net.alanbinu.springboot;
22

33
import org.junit.jupiter.api.Test;
44
import org.springframework.boot.test.context.SpringBootTest;

0 commit comments

Comments
 (0)