remove gson
This commit is contained in:
parent
99040c49f1
commit
43b26b0ef9
|
@ -6,14 +6,13 @@ import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
import com.baeldung.model.Person;
|
import com.baeldung.model.Person;
|
||||||
import com.google.gson.Gson;
|
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
public class PersonInfoController {
|
public class PersonInfoController {
|
||||||
|
|
||||||
@GetMapping("/personResource")
|
@GetMapping("/personResource")
|
||||||
@PreAuthorize("hasAnyRole('ADMIN', 'USER')")
|
@PreAuthorize("hasAnyRole('ADMIN', 'USER')")
|
||||||
public @ResponseBody String personInfo() {
|
public @ResponseBody Person personInfo() {
|
||||||
return new Person("abir", "Dhaka", "Bangladesh", 29, "Male");
|
return new Person("abir", "Dhaka", "Bangladesh", 29, "Male");
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue