Spring запросы безопасности для нового токена при каждом запросе - PullRequest
0 голосов
/ 06 мая 2020

У меня есть приложение, которое запрашивает токен доступа oauth из api stackexchange. Я хочу, чтобы он запрашивал токен доступа только один раз, когда вызывается «/ login», но он запрашивает новый токен, даже когда вызывается «/ content» или любой другой ограниченный URL-адрес / **, а затем перенаправляет на / callback. Но я хочу, чтобы он запрашивал токен только один раз для каждого пользователя. Пожалуйста, помогите мне.

Вот файл application.properties

security.oauth2.client.client-id=XXXXXXXX
security.oauth2.client.client-secret= XXXXXXX
security.oauth2.client.access-token-uri=https://stackoverflow.com/oauth/access_token
security.oauth2.client.user-authorization-uri=https://stackoverflow.com/oauth/dialog
security.oauth2.client.token-name=oauth_token
security.oauth2.client.authentication-scheme=query
security.oauth2.client.client-authentication-scheme=form
security.oauth2.resource.user-info-uri=https://api.stackexchange.com/2.2/me?order=desc&sort=reputation&site=stackoverflow

security.oauth2.client.pre-established-redirect-uri=http://localhost:8080/callback
security.oauth2.client.useCurrentUri=false


spring.mvc.view.suffix=.jsp

Вот класс конфигурации oauth

import org.springframework.boot.autoconfigure.security.oauth2.client.EnableOAuth2Sso;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

    @EnableOAuth2Sso
    @Configuration
    public class OAuth2Configuration extends WebSecurityConfigurerAdapter {

        @Override
        protected void configure(HttpSecurity http) throws Exception {
            http
                    .antMatcher("/**")
                    .authorizeRequests()
                    .antMatchers("/", "/login**", "/callback", "/error**")
                    .permitAll()
                    .anyRequest()
                    .authenticated();
        }
    }

Вот MVC класс контроллера

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import java.security.Principal;

@Controller
public class HomeController {
    @RequestMapping("/user")
    public Principal getUser(Principal user) {
        return user;
    }

    @RequestMapping("/login")
    public String login() {
        return "login";
    }

    @RequestMapping("/callback{ans}")
    public String callback(@PathVariable String ans) {
        System.out.println("hi"+ans);
        return "callback";
    }

    @RequestMapping("/")
    public String home() {
        return "home";
    }

    @RequestMapping("/content")
    public String content() {
        return "content";
    }
}

My pom. xml имеет следующие зависимости

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>jasper</artifactId>
            <version>6.0.53</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.security.oauth.boot</groupId>
            <artifactId>spring-security-oauth2-autoconfigure</artifactId>
            <version>2.1.13.RELEASE</version>
        </dependency>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...