JAVA-24001 Check Article Code Matches GitHub - Week 33 - 2023

This commit is contained in:
anuragkumawat 2023-08-13 13:20:17 +05:30
parent 0323955992
commit 9443ad7229
4 changed files with 7 additions and 7 deletions

View File

@ -8,9 +8,9 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class SecurityController3 {
public class GetUserWithAuthenticationController {
public SecurityController3() {
public GetUserWithAuthenticationController() {
super();
}

View File

@ -6,7 +6,7 @@ import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class SecurityController4 {
public class GetUserWithAuthenticationPrincipalAnnotationController {
@GetMapping("/user")
public String getUser(@AuthenticationPrincipal UserDetails userDetails) {

View File

@ -8,9 +8,9 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class SecurityController {
public class GetUserWithPrincipalController {
public SecurityController() {
public GetUserWithPrincipalController() {
super();
}

View File

@ -11,12 +11,12 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class SecurityController1 {
public class GetUserWithSecurityContextHolderController {
@Autowired
private ApplicationEventPublisher eventPublisher;
public SecurityController1() {
public GetUserWithSecurityContextHolderController() {
super();
}