This commit is contained in:
MaxKey
2023-08-15 12:04:05 +08:00
parent d2500690e2
commit b9e9441b89
7 changed files with 28 additions and 8 deletions

View File

@@ -39,6 +39,7 @@ import org.dromara.maxkey.entity.apps.AppsJwtDetails;
import org.dromara.maxkey.persistence.service.AppsJwtDetailsService;
import org.dromara.maxkey.util.Instance;
import org.dromara.maxkey.web.WebConstants;
import org.dromara.maxkey.web.WebContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
@@ -142,6 +143,6 @@ public class JwtAuthorizeEndpoint extends AuthorizeBaseEndpoint{
return jwkSetKeyStore.toString(mediaType);
}
return appId + " not exist. \n" + JpaWebContext.version();
return appId + " not exist. \n" + WebContext.version();
}
}