mybatis-jpa-extra-3.3.2 service and impl

This commit is contained in:
shimingxy
2024-11-19 11:12:42 +08:00
parent 8c50c6e225
commit f2bc5e37ae
45 changed files with 98 additions and 86 deletions

View File

@@ -59,7 +59,6 @@ public class OAuth20AccessConfirmationEndpoint {
static final Logger _logger = LoggerFactory.getLogger(OAuth20AccessConfirmationEndpoint.class);
@Autowired
@Qualifier("appsService")
protected AppsService appsService;
@Autowired

View File

@@ -78,7 +78,6 @@ public class AbstractEndpoint implements InitializingBean {
AuthenticationManager authenticationManager;
@Autowired
@Qualifier("appsService")
protected AppsService appsService;
@Autowired

View File

@@ -64,11 +64,9 @@ public class UserInfoEndpoint {
private DefaultTokenServices oauth20tokenServices;
@Autowired
@Qualifier("userInfoService")
private UserInfoService userInfoService;
@Autowired
@Qualifier("appsService")
protected AppsService appsService;
@Autowired

View File

@@ -85,11 +85,9 @@ public class UserInfoOIDCEndpoint {
@Autowired
@Qualifier("userInfoService")
private UserInfoService userInfoService;
@Autowired
@Qualifier("appsService")
protected AppsService appsService;
OAuthDefaultUserInfoAdapter defaultOAuthUserInfoAdapter=new OAuthDefaultUserInfoAdapter();