skip to Main Content

SpringBoot + AWS Cognito configuration, I need some clarification

I'm trying to start a new simple project with SpringBoot using AWS Cognito for authentication/authorization Following some guide on web i found some different configuration, for example: https://www.baeldung.com/spring-security-oauth-cognito https://wilkom2009.hashnode.dev/how-to-secure-spring-boot-rest-api-endpoints-with-amazon-cognito In the Baeldung is used only the spring module spring-security-oauth2-jose while…

VIEW QUESTION

Mongodb – SpringBoot – Unsatisfied dependency expressed through field

I was trying for CRUD services using springboot with mongodb. Getting error while running main application. ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'productController': Unsatisfied dependency expressed through field 'productServiceImpl';…

VIEW QUESTION

Unable to load config data from 'aws-parameterstore:' when using Spring Boot with AWS Parameter store

Spring Boot newbie here. I am trying to read credentials from AWS Parameter Store. To do that, I have added the following dependencies to pom.xml: <dependency> <groupId>io.awspring.cloud</groupId> <artifactId>spring-cloud-starter-aws</artifactId> <version>2.4.2</version> </dependency> <dependency> <groupId>io.awspring.cloud</groupId> <artifactId>spring-cloud-aws-parameter-store-config</artifactId> <version>2.4.2</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency>…

VIEW QUESTION
Back To Top
Search