java - Spring Boot 应用程序端点返回 403

标签 java spring spring-boot appdirect

我是 Spring Boot 新手,目前陷入困境。我遵循了这个 ( https://github.com/AppDirect/service-integration-sdk/wiki ) 教程,因为我想实现一个将自身集成到 AppDirect 中的应用程序。在日志中我可以看到端点已创建并映射:

2018-10-29 16:32:48.898  INFO 8644 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/v1/integration/processEvent],methods=[GET],produces=[application/json]}" onto public org.springframework.http.ResponseEntity<com.appdirect.sdk.appmarket.events.APIResult> com.appdirect.sdk.appmarket.events.AppmarketEventController.processEvent(javax.servlet.http.HttpServletRequest,java.lang.String)

但是当我尝试使用浏览器或 Http-Requester 访问端点 ( http://localhost:8080/api/v1/integration/processEvent ) 时,我得到以下响应: {timestamp":"2018-10-29T08:50:13.252+0000","status":403,"error":"禁止","message":"访问被拒绝","path":"/api/v1/integration/processEvent"}

我的 application.yml 如下所示:

connector.allowed.credentials: very-secure:password

server:
  use-forward-headers: true
  tomcat:
    remote_ip_header: x-forwarded-for

endpoints:
  enabled: true
  info:
    enabled: true
    sensitive: false
  health:
    enabled: true
    sensitive: false
    time-to-live: 5000

info:
  build:
    name: @project.name@
    description: @project.description@
    version: @project.version@

这是我的Application.java:

package de.....;

import java.nio.charset.Charset;
import java.util.Collections;
import java.util.List;

import org.springframework.boot.SpringApplication;
import org.springframework.http.MediaType;
import org.springframework.http.converter.FormHttpMessageConverter;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

public class Application extends WebMvcConfigurerAdapter {
    public static void main(String... args) {
        SpringApplication.run(RootConfiguration.class, args);
    }

    /**
     * Hack to make Spring Boot @Controller annotated classed to recognize the 'x-www-form-urlencoded' media type
     *
     * @param converters
     */
    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        FormHttpMessageConverter converter = new FormHttpMessageConverter();
        MediaType mediaType = new MediaType("application", "x-www-form-urlencoded", Charset.forName("UTF-8"));
        converter.setSupportedMediaTypes(Collections.singletonList(mediaType));
        converters.add(converter);
        super.configureMessageConverters(converters);
    }
}

这是 RootConfiguration.java:

package de.....;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

import com.appdirect.sdk.ConnectorSdkConfiguration;
import com.appdirect.sdk.appmarket.DeveloperSpecificAppmarketCredentialsSupplier;
import com.appdirect.sdk.credentials.StringBackedCredentialsSupplier;

import de.....;

@Configuration
@Import({
    ConnectorSdkConfiguration.class,
    EventHandlersConfiguration.class
})
@EnableAutoConfiguration
public class RootConfiguration {

    @Bean
    public DeveloperSpecificAppmarketCredentialsSupplier environmentCredentialsSupplier(@Value("${connector.allowed.credentials}") String allowedCredentials) {
        return new StringBackedCredentialsSupplier(allowedCredentials);
    }
}

任何帮助都会受到赞赏,因为大量的谷歌搜索没有帮助。 提前致谢。

最佳答案

添加以下类并将其注册到 Application.java 中解决了我的问题:

package de.......;

import org.springframework.context.annotation.Configuration;
import org.springframework.core.annotation.Order;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@Configuration
@EnableWebSecurity
@Order(1)
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity httpSecurity) throws Exception {
        httpSecurity.authorizeRequests().antMatchers("/").permitAll();
    }

}

关于java - Spring Boot 应用程序端点返回 403,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53049135/

相关文章:

java - Spring 启动 : "Scope ' request' is not active for the current thread"in Asynch method

spring - 相对于 r2bc 中的 where 子句,我们是否有一个简写来计算 db 中存在的行数

java - "PKIX path building failed"和 "unable to find valid certification path to requested target"

spring - getcurrentsession 中的空指针异常

java - 在 Play Framework 中使用 WebSockets 的缓冲区溢出

java - Spring 启动 : save to repository doesnt work with @Transactional(propagation = Propagation. REQUIRES_NEW)

java - 通过源码包更新现有的类定义

reactjs - 如何将 create-react-app 与 Spring Boot 一起使用?

java - 如何(组织)Android UI(HTML、CSS)和本地代码(Java)之间的交互?

java - 获取似乎从另一个类分层的内容