Merge pull request #14586 from anuragkumawat/JAVA-24001
JAVA-24001 Check Article Code Matches GitHub - Week 33 - 2023
This commit is contained in:
commit
17675c8775
|
@ -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();
|
||||
}
|
||||
|
|
@ -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) {
|
|
@ -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();
|
||||
}
|
||||
|
|
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue