Questions tagged [sts]

194 questions
1
vote
0 answers

AWS token is not refreshing with custom credentials provider in IAM iOS swift

I am currently working on AWS STS to access the S3 resources.I am able to access S3 resources using get object with the help of STS credentials for the first time.After 15 minutes, i have obtained new credentials using getAssumeRoleForUser.This time…
jios
  • 11
  • 2
1
vote
1 answer

Lombok not working in self installed STS on Linux -- Why are my constructors not recognizing the @Builder annotation

Using: Spring Boot Maven Lombok STS 4.9 I have a simple constructor which takes in 3 arguments and assigns them each to a corresponding field. Another field is auto-generated, and two more are autowired by Spring. The constructor, which is…
Nate T
  • 727
  • 5
  • 21
1
vote
1 answer

ClassNotFoundException: org/springframework/context/support/LiveBeansView exception is thrown repeatedly in STS

I am working on a jhipster project in STS. When I started the application in STS as a spring boot application I am getting the following exception log. 2021-05-30 10:57:14.057 DEBUG 13228 --- [on(3)-127.0.0.1] javax.management.mbeanserver …
Sanal M
  • 187
  • 4
  • 17
1
vote
1 answer

Spring Tool Suite not "Spring" in create New

When creating a new one, I do not see a Spring entry. Please help me fix the error!. Thanks all.
1
vote
1 answer

Search from database and display it in web page using spring boot + html

Hello guys i am new in spring boot and want to makean function in which i enter a number in my search box and the table related to the data displays on the web page . and then info should be visible . considered me as a noob in spring boot and want…
1
vote
0 answers

Only JDBC Generic driver option in driver template in sts, want SQL Server driver option also

Trying to achieve JDBC connection to reverse engineer from tables to hibernate using JBOSS tools, need JDBC connection for it, but the option for window->preference->Data Management-> Connectivity->Driver definitions shows only "Generic JDBC…
1
vote
1 answer

Not able to map Json to java Object using Jackson and lombok

POJOs: import lombok.Data; @Data public class CCMTRequest { private MOEH cch; private String filler1; private CCMTCCD ccd; private String uPwName; } @Data public class MOEH { private String c; private…
tusharRawat
  • 719
  • 10
  • 24
1
vote
0 answers

Eclipse view of currently running apps with their output consoles

In eclipse, I am looking for away to show all the currently running apps in an easy way, something similar for SpringBoot Dashboard in Spring Tool Suite, but not for SpringBoot apps. The reason behind that we are building microservices based on our…
Jalal Kiswani
  • 738
  • 5
  • 11
1
vote
1 answer

Classpath issue with OSGI Resources in STS 4.9.0

One of my Spring Boot applications won't run in my IDE (STS 4.9.0). Maven Build runs without any problem. But if I want to run the app in STS using the Boot Dashboard, I get the following Error: java.lang.NoSuchMethodError:…
Henrik
  • 21
  • 4
1
vote
3 answers

Unsatisfied Dependency Exception (Springboot)

I have two tables with the following structure: Course: |course_id|course_name| Module |module_id| duration | module_name | module_type | course_course_id | Now I want to extract the modules based on the course id: In SQL the query would be…
user14854089
1
vote
0 answers

Outside User isolation in google storage

Is there a way to isolate outside user who does not have account in GCP,(i am talking about the feature like STS credetials in AWS, which can be created by roles and policy for the user who does not belong to AWS). So is there a similar feature…
1
vote
1 answer

How to set ATTR_USE_CLASSPATH_ONLY_JAR in eclipse without editing launch configuration for Java > 8?

In eclipse it is possible to specify that jar files be referenced from a temporary JAR to avoid classpath length limitations. This can be achieved by selecting the checkbox in the classpath tab in the run/debug configuration: This works great, but…
xbranko
  • 585
  • 5
  • 12
1
vote
0 answers

Using AWS STS AssumeRole for accessing AWS Secrets Manager

So, is there a way to access a secret from AWS Secret Manager by using temporary credentials from AWS STS AssumeRole? I can see a lot of examples where this is used for establishing an S3 connection, is the same possible for Secrets Manager?
cheeepdeep
  • 11
  • 1
0
votes
0 answers

auth-service:Compilation failure [ERROR]auth/mapper/UserMapper.java:[30,5] Unknown property "authorities" in result type User. Did you mean "deleted"

This error is coming while run on Maven install. can't find where the exact problem is. I want run auth service but there is issue in the mapper, which is shows when I run maven install. UserMapper. java Code, Where it shows error…
0
votes
0 answers

Lombok is not generating getter and setter methods

I upgraded my spring boot project from 2.3 to 3.1 , I do not get any red markers in my code,but when I try to build the project, I get these errors. The build works upto spring boot version 3, but when I change it to 3, These errors pop up. But…