I have an application that consumes a REST service from another server, which has its own authentication method to be able to consume its services. Today, for each request we have, I am calling the authentication service then i receivethe bearerToken (which has a duration of 3 hours) and after that I call the endpoint I want to use. The
Tag: spring
Mockito not working when using Model Mapper
I have an User class: And an UpdateUserDTO class: And an UserDTO class: I’ve used Model Mapper to map the updated fields from updateUserDTO to user, which comes from the DB. My test class looks like this: But the first Mockito.when() line does not even compile, because mapper.map() is a void method, so it does not expect any return values.
Nested JSON in JSON
How can I form JSON like that: I tried creating models with one-to-one, many-to-one relationships. Controller: But I got I read about creating nodes, but didn’t understand, how integrate it with spring data. What i need to nest table Comments in table Tutorials? Answer Looks to me as if you are pretty close to the desired outcome. First of all
How can I unit-test Exception thrown inside a Lambda?
I have a method: This is how the user authorization test looks like: Is there any way to check the case when a user has entered the wrong password? In the case when I send the wrong password, it doesn’t work because given(this.repository.findByEmail(this.user.getEmail())).willReturn(Optional.of(this.user)); makes repository.findByEmail() return the result before you get to checking the password. Answer You don’t need this
Find date inside each month
In my project, in the repository, this select finds the nearest date with a currency id that is less than or equal to the date whose range I set. How can I find a date in each month that is greater than or equal to the date I want to bind, but with the condition that this date must be
Can’t create one_to_one relationship: Unknown mappedBy in
I try to create an OneToOne relationship between two tables but I receive errors. I used a lot of tutorials but nothing helps. For example baeldung tutorial: Project structure: The error: Gradle: application.properties: Answer You need to use a field name for mappedby, not a column name. In you case, it should be @OneToOne(mappedBy = “personalData”).
What happens when we define bean with different names with Annotations and XML config?
The coach object is created with Annotations and coach2 is created with XML configuration file. They both refering to the tennisCoach class. In singleton scope beans refer to the same place in memory but in this situation memory place is different. I have two questions. Why Spring lets us create two objects? Why it doesn’t give an error about why
Spring Boot Unit Test returns 404 instead of 200
I am new in springboot. I am just watching the Spring in Action and programming follow the author. then things get difficult when i just reading the chapter 1. I need to test a controller. the code in this book is: I am using springboot 2.7.3 so i just remove @RunWith(SpringRunner.class) from my code. and i immediately get an error
What are the best practices for calculating statistics in REST API applications
I am trying to make a service that will calculate statistics for each month. I did smth like this: But it takes a long time if there are lots of etries in the database. Are there any best practices for working with statistics in REST API applications? And also I’d like to know if it is a good way to
Spring Boot, Spring-Security – BcrypPasswordEncoder in new component-based security configuration
I am trying to use the new Component-Based (Without WebSecurityConfigurerAdapter) configuration and setted up my Security Configuration as follow: SecurityConfiguration.java file but when I run the application and try to log a user the following error appears even though I have the BCryptPasswordEncoder as a bean in my SecurityConfiguration: Error Stack Trace* Which is the correct way to set up